aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/build.gradle10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/build.gradle b/lib/build.gradle
index 9248ce3..594dd9c 100644
--- a/lib/build.gradle
+++ b/lib/build.gradle
@@ -7,7 +7,7 @@ apply plugin: 'com.diffplug.spotless'
apply plugin: 'com.github.spotbugs'
apply plugin: 'org.sonarqube'
-group 'org.onap'
+group 'org.onap.portal-ng'
version rootProject.file('version').text.trim()
dependencies {
@@ -35,7 +35,7 @@ dependencies {
}
shadowJar {
- archiveBaseName.set('portal-bff')
+ archiveBaseName.set('bff')
dependencies {
include(project(':openapi:server'))
include(project(':openapi:client-portal-history'))
@@ -46,14 +46,14 @@ shadowJar {
publishing {
publications {
- myLibrary(MavenPublication) {
+ bffLibrary(MavenPublication) {
artifactId = rootProject.name
groupId = group
version = version
- artifacts = ["build/libs/portal-bff-$version-all.jar"]
+ artifacts = ["build/libs/bff-$version-all.jar"]
pom {
name = rootProject.name
- description = 'ONAP community edition of portal-bff'
+ description = 'ONAP community edition of bff'
}
}
}