diff options
author | 2024-11-26 13:45:56 +0000 | |
---|---|---|
committer | 2024-11-26 14:21:13 +0000 | |
commit | f501c40e5da5e489ad9daae848258a05d43104fc (patch) | |
tree | 8ddb8a6dcc2e5ee7028fbd131c737c9b41f54ae1 /pom.xml | |
parent | b5d7b53351a0d3f1f0b30665a8e86bf3c8026aa7 (diff) |
[DMI] Fix for DMI merge master Job
- ncmp-dmi-plugin group id is changed from "org.onap.cps" to "org.onap.cps.ncmp-dmi-plugin"
Issue-ID: CPS-2499
Change-Id: I6db7093c48c0f11ca2ef172458951a379d42d255
Signed-off-by: sourabh_sourabh <sourabh.sourabh@est.tech>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -35,7 +35,7 @@ <module>dmi-stub</module> </modules> - <groupId>org.onap.cps</groupId> + <groupId>org.onap.cps.ncmp-dmi-plugin</groupId> <artifactId>ncmp-dmi-plugin</artifactId> <version>1.6.0-SNAPSHOT</version> <name>ncmp-dmi-plugin</name> @@ -51,7 +51,8 @@ <image.tag>${project.version}-${maven.build.timestamp}</image.tag> <!-- Project Versioning and Timestamp --> - <cps.version>3.5.5-SNAPSHOT</cps.version> + <cps.groupId>org.onap.cps</cps.groupId> + <cps.version> 3.5.5-SNAPSHOT</cps.version> <maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format> <!-- Code Quality and Dependency Management --> @@ -88,7 +89,7 @@ <configuration> <artifactItems> <artifactItem> - <groupId>${project.groupId}</groupId> + <groupId>${cps.groupId}</groupId> <artifactId>checkstyle</artifactId> <version>${cps.version}</version> <type>jar</type> @@ -149,7 +150,7 @@ </executions> <dependencies> <dependency> - <groupId>${project.groupId}</groupId> + <groupId>${cps.groupId}</groupId> <artifactId>checkstyle</artifactId> <version>${cps.version}</version> </dependency> |