将 common 改为 payapi-common
diff --git a/payapi-sdk/build.gradle b/payapi-sdk/build.gradle
index 7f5aafa..173368c 100644
--- a/payapi-sdk/build.gradle
+++ b/payapi-sdk/build.gradle
@@ -43,7 +43,7 @@
     implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
     implementation 'org.springframework.boot:spring-boot-starter-data-redis'
 
-    implementation project(':common')
+    implementation project(':payapi-common')
 
     implementation 'org.springframework.cloud:spring-cloud-dependencies:Finchley.SR3'
     implementation 'org.springframework.cloud:spring-cloud-starter-openfeign:2.1.2.RELEASE'
@@ -59,7 +59,7 @@
     testAnnotationProcessor 'org.projectlombok:lombok:1.18.8'
     testCompileOnly 'org.projectlombok:lombok:1.18.8'
     testImplementation 'org.hamcrest:hamcrest:2.1'
-    testImplementation project(':common')
+    testImplementation project(':payapi-common')
 
 }
 
@@ -70,11 +70,11 @@
     manifest {
         attributes('Payapi-SDK-Version': sdkVersion)
     }
-    from project(':common').configurations.archives.allArtifacts.files.collect { zipTree(it) }
+    from project(':payapi-common').configurations.archives.allArtifacts.files.collect { zipTree(it) }
 }
 
 
-task fullJar(type: Jar, dependsOn: ':common:jar') {
+task fullJar(type: Jar, dependsOn: ':payapi-common:jar') {
 }
 
 jar.dependsOn(fullJar)