summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorvarun gudisena <vg411h@att.com>2017-09-22 04:40:27 +0000
committerGerrit Code Review <gerrit@onap.org>2017-09-22 04:40:27 +0000
commit2f6a92f0c75a977747a8d9be9ef704bcc965b688 (patch)
tree8ea7ca2dd716051fbc63591b374db0075521675d
parentca01c9e4c0f606a6af50936260a680fdcb90c656 (diff)
parent915e12f77a973217422a2381e9872dbf4eacfef8 (diff)
Merge "Add site plugin"
-rw-r--r--pom.xml23
1 files changed, 22 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index 2df368f..c5d00f8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -31,7 +31,7 @@
<parent>
<groupId>org.onap.oparent</groupId>
<artifactId>oparent</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>0.1.1</version>
</parent>
<name>dmaap-messagerouter-mirroragent</name>
@@ -48,7 +48,16 @@
<sonar.jacoco.itReportPath>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPath>
<!-- Note: This list should match jacoco-maven-plugin's exclusion list below -->
<sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
+ <sitePath>/content/sites/site/org/onap/dmaap/${project.artifactId}/${project.version}</sitePath>
</properties>
+
+ <distributionManagement>
+ <site>
+ <id>ecomp-site</id>
+ <url>dav:${nexusproxy}${sitePath}</url>
+ </site>
+ </distributionManagement>
+
<licenses>
<license>
<name>Apache License Version 2.0</name>
@@ -88,6 +97,18 @@
</dependencies>
<build>
<plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-site-plugin</artifactId>
+ <version>3.6</version>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.maven.wagon</groupId>
+ <artifactId>wagon-webdav-jackrabbit</artifactId>
+ <version>2.10</version>
+ </dependency>
+ </dependencies>
+ </plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>