diff options
author | Stone, Avi (as206k) <as206k@att.com> | 2018-05-10 18:02:10 +0300 |
---|---|---|
committer | Stone, Avi (as206k) <as206k@att.com> | 2018-05-10 18:02:10 +0300 |
commit | aa5abad02d14b3c6e62a1ff2071dc42c4e5d29e8 (patch) | |
tree | e4560b1502dcbc3a7fd910508f780c9fd7728542 /pom.xml | |
parent | 26e08333b57ff746b295567bb5093642a9ce0da4 (diff) |
Fix pom.xml
Change pom version according to ONAP versioning
Change-Id: Ic969b2f4205c780d80b252b5ee37a53c081cd1a7
Issue-ID: SDC-1316
Signed-off-by: Stone, Avi (as206k) <as206k@att.com>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 44 |
1 files changed, 35 insertions, 9 deletions
@@ -1,10 +1,10 @@ -<project - xmlns="http://maven.apache.org/POM/4.0.0" +<project + xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> - <groupId>org.onap.sdc</groupId> + <groupId>org.onap.sdc.dcae-d.fe</groupId> <artifactId>dcae_fe</artifactId> - <version>1806.0.1-SNAPSHOT</version> + <version>1.2.0-SNAPSHOT</version> <packaging>war</packaging> <name>DCAE FE application</name> <description>DCAE FE</description> @@ -19,6 +19,7 @@ <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> <dependency> @@ -90,7 +91,7 @@ <scope>provided</scope> </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> @@ -146,14 +147,14 @@ <scope>provided</scope> </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> </dependencies> </profile> - - + + <profile> <id>docker</id> <properties> @@ -264,7 +265,7 @@ </plugin> </plugins> </build> - </profile> + </profile> </profiles> <build> <finalName>dcae_fe</finalName> @@ -349,6 +350,31 @@ <artifactId>maven-war-plugin</artifactId> <version>3.0.0</version> </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> |