diff options
author | sourabh_sourabh <sourabh.sourabh@est.tech> | 2024-11-13 12:54:17 +0000 |
---|---|---|
committer | sourabh_sourabh <sourabh.sourabh@est.tech> | 2024-11-13 12:54:17 +0000 |
commit | 1bb3639f4ad0395fd941fc072154838f62bb8193 (patch) | |
tree | 7b63463f6f4b2fb198e9293da22c4df07ec7279c /cps-parent | |
parent | e8d4ada1b904380bc5fcba339d9c68c49fb5252b (diff) |
Fix for cps-master-merge-java job after removing oParent
Issue-ID: CPS-2496
Change-Id: I94eef4006b8c96db2c9d350c3330edf98924099c
Signed-off-by: sourabh_sourabh <sourabh.sourabh@est.tech>
Diffstat (limited to 'cps-parent')
-rw-r--r-- | cps-parent/pom.xml | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/cps-parent/pom.xml b/cps-parent/pom.xml index 6c4d1a3d62..ea59fe4d40 100644 --- a/cps-parent/pom.xml +++ b/cps-parent/pom.xml @@ -33,7 +33,7 @@ <properties> <!-- Set UTF-8 encoding for consistent builds across platforms --> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> - + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <!-- Application Configuration --> <app>org.onap.cps.Application</app> @@ -73,6 +73,17 @@ </sonar.coverage.jacoco.xmlReportPaths> </properties> + <distributionManagement> + <repository> + <id>ecomp-releases</id> + <url>${onap.nexus.url}/content/repositories/releases</url> + </repository> + <snapshotRepository> + <id>ecomp-snapshots</id> + <url>${onap.nexus.url}/content/repositories/snapshots</url> + </snapshotRepository> + </distributionManagement> + <!-- Dependency Management, Profiles, Build, and Plugins --> <dependencyManagement> @@ -476,6 +487,7 @@ <goal>report</goal> </goals> <configuration> + <outputEncoding>${project.reporting.outputEncoding}</outputEncoding> <!-- Sets the path to the file which contains the execution data. --> <dataFile>${jacoco.execFile}</dataFile> <!-- Sets the output directory for the code coverage report. --> @@ -505,6 +517,11 @@ </execution> </executions> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <version>3.1.2</version> + </plugin> </plugins> </build> </project>
\ No newline at end of file |