diff options
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 37 |
1 files changed, 31 insertions, 6 deletions
@@ -1,9 +1,9 @@ <?xml version="1.0" encoding="UTF-8"?> -<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.dcae</groupId> + <groupId>org.onap.sdc.dcae-d.dt-be-main</groupId> <artifactId>dcae_dt_be_main</artifactId> <version>1806.0.1-SNAPSHOT</version> <packaging>pom</packaging> @@ -18,7 +18,7 @@ <dependencies> <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> <exclusions> @@ -39,6 +39,7 @@ <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <java.version>1.8</java.version> <nexus.proxy>https://nexus.onap.org</nexus.proxy> + <staging.profile.id>176c31dfe190a</staging.profile.id> </properties> <build> <plugins> @@ -61,6 +62,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> <profiles> @@ -186,7 +212,7 @@ </tags> </build> </image> - + <!-- Build tools image --> <image> <name>onap/dcae-tools</name> @@ -275,4 +301,3 @@ </site> </distributionManagement> </project> - |