Fix maven merge master job 54/140954/1
authormpriyank <priyank.maheshwari@est.tech>
Fri, 23 May 2025 09:56:21 +0000 (10:56 +0100)
committermpriyank <priyank.maheshwari@est.tech>
Fri, 23 May 2025 09:56:28 +0000 (10:56 +0100)
- distribution management section was incorrectly removed before,
  results in failure of maven merge master job

Issue-ID: CPS-2825
Change-Id: I5cf3e2b3344669b4f2dbb7c37a87c0903589a865
Signed-off-by: mpriyank <priyank.maheshwari@est.tech>
checkstyle/pom.xml

index b54f229..617cdec 100644 (file)
         </profile>
     </profiles>
 
+    <properties>
+        <onap.nexus.url>https://nexus.onap.org</onap.nexus.url>
+        <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
+        <sonar.skip>true</sonar.skip>
+        <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
+    </properties>
+
     <build>
         <pluginManagement>
             <plugins>
             </plugin>
         </plugins>
     </build>
+    <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