This is an automated email from the ASF dual-hosted git repository. awasum pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/fineract-cn-group.git
commit 1af5bebf601eba6ee0f65c3ca02e55ff4b03fdc5 Author: Juhan Aasaru <[email protected]> AuthorDate: Thu Apr 25 13:41:56 2019 +0300 FINCN-148 build with travis-ci.com and upload artifacts to Artifactory --- service/build.gradle | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/service/build.gradle b/service/build.gradle index 11b1a51..4090c17 100644 --- a/service/build.gradle +++ b/service/build.gradle @@ -32,6 +32,7 @@ buildscript { plugins { id "com.github.hierynomus.license" version "0.13.1" id("org.nosphere.apache.rat") version "0.3.1" + id "com.jfrog.artifactory" version "4.9.5" } apply from: '../shared.gradle' @@ -68,14 +69,14 @@ publishing { from components.java groupId project.group artifactId project.name - version project.version + version project.findProperty('externalVersion') ?: project.version } bootService(MavenPublication) { // "boot" jar artifact ("$buildDir/libs/$project.name-$version-boot.jar") groupId project.group artifactId ("$project.name-boot") - version project.version + version project.findProperty('externalVersion') ?: project.version } } }
