diff options
author | Ofir Sonsino <os0695@intl.att.com> | 2019-09-01 15:06:16 +0300 |
---|---|---|
committer | Ofir Sonsino <os0695@intl.att.com> | 2019-09-01 15:08:41 +0300 |
commit | 89d3a6c7da5696883243ea3126fc10ad09a991a9 (patch) | |
tree | 565aa133289a9beb8fb8a732aa3647ac655352e7 /pom.xml | |
parent | c99d2a24675e8503e8ed5af578332535ac19e1a8 (diff) |
add Surefire plugin
+align repository id
Change-Id: Ib0f6cf3156df415353694c4ffb5ec2634beb13a1
Issue-ID: SDC-2326
Signed-off-by: Ofir Sonsino <os0695@intl.att.com>
Diffstat (limited to 'pom.xml')
-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> |