diff options
author | 2023-08-16 07:15:07 +0000 | |
---|---|---|
committer | 2023-08-16 08:19:43 +0000 | |
commit | 7c0e2f563a18dfe7c8f6c2ad66d01775c9468f37 (patch) | |
tree | 93ec77e83d0eb035c26a7f4e3017a7ee9f2e4f91 /app/build.gradle | |
parent | 6ae8df1305d1374af3b5ffe8ecb4c5ce3e17260d (diff) |
Consistently use the preferences name in the preferences code base
- rename package name from org.onap.portal.prefs to org.onap.portalng.preferences
- replace all other occurences of portal-prefs with preferences
Other:
- remove Sonarqube plugin
Issue-ID: PORTALNG-39
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Change-Id: Iced79a26460d988c5b22eb5fcac86d350528a1a2
Diffstat (limited to 'app/build.gradle')
-rw-r--r-- | app/build.gradle | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/app/build.gradle b/app/build.gradle index 1d51c30..28e6384 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -5,7 +5,6 @@ plugins { id 'io.spring.dependency-management' id 'org.springframework.boot' id 'jacoco' - id 'org.sonarqube' id 'com.gorylenko.gradle-git-properties' } @@ -15,7 +14,7 @@ sourceCompatibility = '17' targetCompatibility = '17' application { - mainClass = 'org.onap.portal.prefs.PortalPrefsApplication' + mainClass = 'org.onap.portalng.preferences.PreferencesApplication' } configurations { @@ -81,13 +80,6 @@ jacocoTestReport { } } -sonarqube { - properties { - property "sonar.projectKey", "tnap.SONAR.portal.portal-prefs" - property "sonar.projectName", "portal-prefs" - } -} - configurations.implementation.setCanBeResolved(true) // avoid generating X.X.X-plain.jar @@ -98,10 +90,10 @@ jar { springBoot { buildInfo { properties { - artifact = "onap-portal-prefs" + artifact = "onap-portal-ng-preferences" version = rootProject.file('version').text.trim() - group = "org.onap" - name = "Portal user preferences service" + group = "org.onap.portalng" + name = "Portal-ng user preferences service" } } } |