diff options
author | sourabh_sourabh <sourabh.sourabh@est.tech> | 2024-11-20 10:37:59 +0000 |
---|---|---|
committer | sourabh_sourabh <sourabh.sourabh@est.tech> | 2024-11-20 11:00:01 +0000 |
commit | 38becbcbbc5552150133ee1b4b477903f0f1e6c6 (patch) | |
tree | e5cca29793fe4e50fa64024e9e84ab716ae7dd3e /dmi-stub | |
parent | 73acc0cc31dad137b03c30eaf53de4c2160e600d (diff) |
[DMI] Fix for DMI merge master Job working
- Configured ECOMP snapshot and release repository for onap dmi and stub
with root.
Issue-ID: CPS-2499
Change-Id: I65aa559e5460b418c1a002a1e486e474500f1d00
Signed-off-by: sourabh_sourabh <sourabh.sourabh@est.tech>
Diffstat (limited to 'dmi-stub')
-rw-r--r-- | dmi-stub/dmi-plugin-demo-and-csit-stub-app/pom.xml | 28 |
1 files changed, 27 insertions, 1 deletions
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 0cdac6eb..e513d929 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 @@ -31,6 +31,13 @@ <properties> <app>org.onap.cps.ncmp.dmi.rest.stub.DmiDemoApplication</app> + + <maven.deploy.plugin.version>3.1.2</maven.deploy.plugin.version> + + <!-- ONAP Nexus Repository Configuration --> + <onap.nexus.url>https://nexus.onap.org</onap.nexus.url> + <releaseNexusPath>/content/repositories/releases/</releaseNexusPath> + <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath> </properties> <dependencies> @@ -103,6 +110,11 @@ </execution> </executions> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <version>${maven.deploy.plugin.version}</version> + </plugin> </plugins> </pluginManagement> </build> @@ -114,7 +126,7 @@ <activeByDefault>true</activeByDefault> </activation> <properties> - <image.name>onap-dmi-plugin-demo-and-csit-stub</image.name> + <image.name>dmi-plugin-demo-and-csit-stub</image.name> </properties> <build> <plugins> @@ -127,4 +139,18 @@ </build> </profile> </profiles> + + <distributionManagement> + <repository> + <id>ecomp-releases</id> + <name>ECOMP Release Repository</name> + <url>${onap.nexus.url}${releaseNexusPath}</url> + </repository> + <snapshotRepository> + <id>ecomp-snapshots</id> + <name>ECOMP Snapshot Repository</name> + <url>${onap.nexus.url}${snapshotNexusPath}</url> + </snapshotRepository> + </distributionManagement> + </project>
\ No newline at end of file |