enabled = false
}
-jar {
- enabled = true
- baseName = "payapi-sdk"
- manifest {
- attributes('Payapi-SDK-Version': sdkVersion)
- }
-}
-
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
testImplementation 'org.hamcrest:hamcrest:2.1'
testImplementation project(':common')
-}
\ No newline at end of file
+}
+
+
+jar {
+ enabled = true
+ baseName = "payapi-sdk"
+ manifest {
+ attributes('Payapi-SDK-Version': sdkVersion)
+ }
+ from project(':common').configurations.archives.allArtifacts.files.collect { zipTree(it) }
+}
+
+
+task fullJar(type: Jar, dependsOn: ':common:jar') {
+}
+
+jar.dependsOn(fullJar)
+publish.dependsOn(fullJar)
\ No newline at end of file