diff options
-rw-r--r-- | pom.xml | 28 | ||||
-rw-r--r-- | version.properties | 4 |
2 files changed, 29 insertions, 3 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> diff --git a/version.properties b/version.properties index a24b0ee..8471f55 100644 --- a/version.properties +++ b/version.properties @@ -4,8 +4,8 @@ # because they are used in Jenkins, whose plug-in doesn't support major=1 -minor=3 -patch=5 +minor=2 +patch=0 base_version=${major}.${minor}.${patch} |