This is an automated email from the ASF dual-hosted git repository.

kaze pushed a commit to branch spring_boot_2
in repository https://gitbox.apache.org/repos/asf/fineract-cn-reporting.git

commit 651cf0621736a0121bc1ad0cc0f71ea44ca75ea6
Author: Audrey Ndum <[email protected]>
AuthorDate: Mon Jan 4 20:42:17 2021 +0100

    fixed build error
---
 service/build.gradle | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/service/build.gradle b/service/build.gradle
index 635e077..517190c 100644
--- a/service/build.gradle
+++ b/service/build.gradle
@@ -39,7 +39,7 @@ apply from: '../shared.gradle'
 
 bootJar {
     enabled = true
-    archiveClassifier = 'boot'
+    classifier = 'boot'
 }
 
 dependencies {
@@ -80,7 +80,7 @@ publishing {
         }
         bootService(MavenPublication) {
             // "boot" jar
-            
artifact(file("$buildDir/libs/$project.name-$project.version-${bootJar.archiveClassifier}.jar"))
+            
artifact(file("$buildDir/libs/$project.name-$project.version-${bootJar.classifier}.jar"))
             groupId project.group
             artifactId ("$project.name-boot")
             version project.findProperty('externalVersion') ?: project.version

Reply via email to