diff options
author | varun gudisena <vg411h@att.com> | 2017-09-22 04:40:47 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-09-22 04:40:47 +0000 |
commit | 6d9f2bab9edf3faebf10addd2018d4a539ab943a (patch) | |
tree | da4447a22b6ba7784b7fb19eb1474f46f9e321d6 | |
parent | 6df64160eb361459659d46343342df5d3703077f (diff) | |
parent | 26b93395a6c7a6688064ce8b0ae7162327ca8fd7 (diff) |
Merge "Add maven site plugin"
-rw-r--r-- | pom.xml | 22 |
1 files changed, 21 insertions, 1 deletions
@@ -33,7 +33,7 @@ <parent> <groupId>org.onap.oparent</groupId> <artifactId>oparent</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>0.1.1</version> </parent> <properties> <!-- for the client library, we want to allow 1.6 or later --> @@ -51,7 +51,15 @@ <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> @@ -166,6 +174,18 @@ </resources> <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> <artifactId>maven-assembly-plugin</artifactId> <version>2.4</version> <configuration> |