summaryrefslogtreecommitdiffstats
path: root/dmi-service/pom.xml
diff options
context:
space:
mode:
authorsourabh_sourabh <sourabh.sourabh@est.tech>2024-11-20 10:37:59 +0000
committersourabh_sourabh <sourabh.sourabh@est.tech>2024-11-20 11:00:01 +0000
commit38becbcbbc5552150133ee1b4b477903f0f1e6c6 (patch)
treee5cca29793fe4e50fa64024e9e84ab716ae7dd3e /dmi-service/pom.xml
parent73acc0cc31dad137b03c30eaf53de4c2160e600d (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-service/pom.xml')
-rw-r--r--dmi-service/pom.xml28
1 files changed, 27 insertions, 1 deletions
diff --git a/dmi-service/pom.xml b/dmi-service/pom.xml
index b3b5ff55..645140b3 100644
--- a/dmi-service/pom.xml
+++ b/dmi-service/pom.xml
@@ -43,6 +43,7 @@
<!-- Global properties for version management -->
<bug.pattern.version>1.5.0</bug.pattern.version>
<gmavenplus.plugin.version>4.0.1</gmavenplus.plugin.version>
+ <maven.deploy.plugin.version>3.1.2</maven.deploy.plugin.version>
<maven.surefire.plugin.version>3.3.1</maven.surefire.plugin.version>
<openapi.generator.maven.plugin.version>6.6.0</openapi.generator.maven.plugin.version>
<spring.boot.maven.plugin.version>3.1.2</spring.boot.maven.plugin.version>
@@ -53,6 +54,11 @@
<jacoco.minimum.coverage>0.98</jacoco.minimum.coverage>
<jacoco.outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</jacoco.outputDirectory>
<jacoco.version>0.8.11</jacoco.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>
<dependencyManagement>
@@ -562,6 +568,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>
<plugins>
@@ -605,6 +616,7 @@
</plugins>
</pluginManagement>
</build>
+
<profiles>
<profile>
<id>docker</id>
@@ -612,7 +624,7 @@
<activeByDefault>true</activeByDefault>
</activation>
<properties>
- <image.name>onap-dmi-ncmp-plugin</image.name>
+ <image.name>ncmp-dmi-plugin</image.name>
</properties>
<build>
<plugins>
@@ -625,4 +637,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