diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/build.gradle | 40 |
1 files changed, 28 insertions, 12 deletions
diff --git a/app/build.gradle b/app/build.gradle index 2f2dfae..934edf7 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,6 +1,3 @@ -/* - * This file was generated by the Gradle 'init' task. - */ plugins { id 'org.onap.portalng.history.java-application-conventions' id 'io.spring.dependency-management' @@ -11,6 +8,21 @@ plugins { } apply from: "${rootDir}/gradle/verify-licenses.gradle" +def appVersion = getAppVersion() +sourceCompatibility = '17' +targetCompatibility = '17' + +springBoot { + buildInfo { + properties { + artifact = "org-onap-portalng-history" + version = appVersion + group = "org.onap.portalng" + name = "History service that saves user actions" + } + } +} + configurations { compileOnly { extendsFrom annotationProcessor @@ -97,13 +109,17 @@ license { } configurations.implementation.setCanBeResolved(true) -springBoot { - buildInfo { - properties { - artifact = "org-onap-portalng-history" - version = rootProject.file('version').text.trim() - group = rootProject.group - name = "History service that saves user actions" - } - } +def String getAppVersion() { + Properties versionProperties = getVersionProperties() + String major = versionProperties.getProperty('major') + String minor = versionProperties.getProperty('minor') + String patch = versionProperties.getProperty('patch') + return major + '.' + minor + '.' + patch +} +def Properties getVersionProperties() { + def versionProperties = new Properties() + rootProject.file('version.properties').withInputStream { + versionProperties.load(it) + } + return versionProperties }
\ No newline at end of file |