summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStone, Avi (as206k) <as206k@att.com>2018-05-10 17:53:15 +0300
committerStone, Avi (as206k) <as206k@att.com>2018-05-10 17:53:15 +0300
commitca206254cdac44a8cbd0ea0dd6cabff94d0a311b (patch)
treeb6811d2b66406a432aff11568f238ff96278da20
parent555a089f18b2fc7a66bc20485a1c67c735e46df6 (diff)
Fix pom.xml
Change pom version according to ONAP versioning Change-Id: I08ec7f2426261e5873b5add3abba2fcd693842b6 Issue-ID: SDC-1316 Signed-off-by: Stone, Avi (as206k) <as206k@att.com>
-rw-r--r--pom.xml34
1 files changed, 31 insertions, 3 deletions
diff --git a/pom.xml b/pom.xml
index d8d899f..f4b2ea9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.onap.sdc.dcae-ci-tests</groupId>
<artifactId>dcae-ci-tests</artifactId>
- <version>1806.0.1-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<name>DCAE Tests</name>
<packaging>jar</packaging>
<description>Tests for DCAE Designer </description>
@@ -11,7 +11,10 @@
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
- <nexus.proxy>https://nexus.onap.org</nexus.proxy>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
+ <nexus.proxy>https://nexus.onap.org</nexus.proxy>
+ <staging.profile.id>176c31dfe190a</staging.profile.id>
</properties>
<dependencies>
@@ -31,7 +34,7 @@
</dependency>
<dependency>
- <groupId>org.onap.sdc.dcae.property</groupId>
+ <groupId>org.onap.sdc.dcae-d.dt-be-property</groupId>
<artifactId>DCAE-DT-PROPERTY</artifactId>
<version>${project.version}</version>
</dependency>
@@ -63,6 +66,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>
<repositories>