diff options
-rw-r--r-- | pom.xml | 14 |
1 files changed, 11 insertions, 3 deletions
@@ -118,12 +118,20 @@ <goal>prepare-agent</goal> </goals> <configuration> - <argLine>${argLine} -Xmx2048m</argLine> <destFile>${sonar.jacoco.reportPath}</destFile> </configuration> </execution> </executions> </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <version>2.19.1</version> + <configuration> + <argLine>${argLine} -Xmx2048m</argLine> + </configuration> + </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> @@ -169,12 +177,12 @@ <distributionManagement> <repository> - <id>onap-releases</id> + <id>ecomp-releases</id> <name>Release Repository</name> <url>${nexus.proxy}/content/repositories/${releases.path}/</url> </repository> <snapshotRepository> - <id>onap-snapshots</id> + <id>ecomp-snapshots</id> <name>Snapshot Repository</name> <url>${nexus.proxy}/content/repositories/${snapshots.path}/</url> </snapshotRepository> |