diff options
author | Stone, Avi (as206k) <as206k@att.com> | 2018-05-24 14:28:23 +0300 |
---|---|---|
committer | Stone, Avi (as206k) <as206k@att.com> | 2018-05-24 14:28:23 +0300 |
commit | aed76934b4dc6973de0a01f6ac4fd7314f8a2df9 (patch) | |
tree | 84e08362ccad2df5cf25ef1e16c63944180dda32 /pom.xml | |
parent | a403bf35b5ea711207ba23cdee1bf3f91d0ad473 (diff) |
Fix pom and version
Update appname, version and add site and staging plugins
Change-Id: I590b008d2c861b98ae563e701fa75b4bb429813c
Issue-ID: SDC-1313
Signed-off-by: Stone, Avi (as206k) <as206k@att.com>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 28 |
1 files changed, 27 insertions, 1 deletions
@@ -4,7 +4,7 @@ <groupId>org.onap.sdc.dcae-d.ci</groupId> <artifactId>dcae-ci-tests</artifactId> <version>1.2.0-SNAPSHOT</version> - <name>DCAE Tests</name> + <name>dcae-d ci tests</name> <packaging>jar</packaging> <description>Tests for DCAE Designer </description> @@ -18,6 +18,7 @@ <httpclient.version>4.5.5</httpclient.version> <snakeyaml.version>1.21</snakeyaml.version> <slf4j.version>1.7.25</slf4j.version> + <sonar.branch>${project.version}</sonar.branch> </properties> <dependencies> @@ -137,6 +138,31 @@ </execution> </executions> </plugin> + <!-- Site Plugin --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-site-plugin</artifactId> + <version>3.4</version> + <dependencies> + <dependency> + <groupId>org.apache.maven.wagon</groupId> + <artifactId>wagon-webdav-jackrabbit</artifactId> + <version>2.10</version> + </dependency> + </dependencies> + </plugin> + <!-- Staging Plugin --> + <plugin> + <groupId>org.sonatype.plugins</groupId> + <artifactId>nexus-staging-maven-plugin</artifactId> + <version>1.6.7</version> + <extensions>true</extensions> + <configuration> + <nexusUrl>${nexus.proxy}</nexusUrl> + <stagingProfileId>${staging.profile.id}</stagingProfileId> + <serverId>ecomp-staging</serverId> + </configuration> + </plugin> </plugins> </build> |