diff options
author | sourabh_sourabh <sourabh.sourabh@est.tech> | 2024-11-18 15:41:26 +0000 |
---|---|---|
committer | sourabh_sourabh <sourabh.sourabh@est.tech> | 2024-11-18 15:41:26 +0000 |
commit | d31e277e0733fbc24b39d48cba3c340cb3ba6885 (patch) | |
tree | 9fb5dd4a3bec027b3e645b4985f96f26f7a0acf7 | |
parent | d7ed9f097252d2dcdcf504fd45bc1e7280b61d4c (diff) |
Fix for DMI Merge job to address HTTP 403 issue while uploading dmi jar to nexus3.onap.org
Issue-ID: CPS-2499
Change-Id: Iba0141c5d1d51712ae2a17b7ffb1daeb2cdc19db
Signed-off-by: sourabh_sourabh <sourabh.sourabh@est.tech>
-rw-r--r-- | dmi-service/pom.xml | 1 | ||||
-rw-r--r-- | dmi-stub/dmi-plugin-demo-and-csit-stub-app/pom.xml | 2 | ||||
-rw-r--r-- | dmi-stub/dmi-plugin-demo-and-csit-stub-service/pom.xml | 3 | ||||
-rw-r--r-- | pom.xml | 1 |
4 files changed, 3 insertions, 4 deletions
diff --git a/dmi-service/pom.xml b/dmi-service/pom.xml index 6aa2e835..17d22751 100644 --- a/dmi-service/pom.xml +++ b/dmi-service/pom.xml @@ -34,7 +34,6 @@ <!-- Application Configuration --> <app>org.onap.cps.ncmp.dmi.Application</app> - <image.name>ncmp-dmi-plugin</image.name> <!-- Encoding Configuration --> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> diff --git a/dmi-stub/dmi-plugin-demo-and-csit-stub-app/pom.xml b/dmi-stub/dmi-plugin-demo-and-csit-stub-app/pom.xml index ca214065..66a12119 100644 --- a/dmi-stub/dmi-plugin-demo-and-csit-stub-app/pom.xml +++ b/dmi-stub/dmi-plugin-demo-and-csit-stub-app/pom.xml @@ -109,7 +109,7 @@ <profiles> <profile> - <id>docker</id> + <id>stub-docker</id> <activation> <activeByDefault>true</activeByDefault> </activation> diff --git a/dmi-stub/dmi-plugin-demo-and-csit-stub-service/pom.xml b/dmi-stub/dmi-plugin-demo-and-csit-stub-service/pom.xml index b0441151..93e69100 100644 --- a/dmi-stub/dmi-plugin-demo-and-csit-stub-service/pom.xml +++ b/dmi-stub/dmi-plugin-demo-and-csit-stub-service/pom.xml @@ -34,6 +34,7 @@ <maven.compiler.plugin.version>3.13.0</maven.compiler.plugin.version> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> + <maven.surefire.plugin.version>3.3.1</maven.surefire.plugin.version> </properties> <dependencies> @@ -166,6 +167,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> + <version>${maven.surefire.plugin.version}</version> <configuration> <!--suppress UnresolvedMavenProperty --> <argLine>${surefireArgLine}</argLine> @@ -178,5 +180,4 @@ </plugin> </plugins> </build> - </project>
\ No newline at end of file @@ -48,7 +48,6 @@ <!-- Application and Docker Configuration --> <base.image>${docker.pull.registry}/onap/integration-java17:12.0.0</base.image> - <image.name>ncmp-dmi-plugin</image.name> <image.tag>${project.version}-${maven.build.timestamp}</image.tag> <!-- Project Versioning and Timestamp --> |