diff options
author | varun gudisena <vg411h@att.com> | 2017-09-22 04:40:56 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-09-22 04:40:56 +0000 |
commit | 5b5eb1facc3c5f10146fa903b1fa50537336810e (patch) | |
tree | 786e1006ba59519dc5a3f6fc74a72905e34067d0 /pom.xml | |
parent | 1b6189080ba3806c9c3d9aaa66d828a11288db55 (diff) | |
parent | d245aec3c055ddb1e9417ccddfc41b2d41884e35 (diff) |
Merge "Add maven site plugin"
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 21 |
1 files changed, 20 insertions, 1 deletions
@@ -32,7 +32,7 @@ <parent> <groupId>org.onap.oparent</groupId> <artifactId>oparent</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>0.1.1</version> </parent> <properties> @@ -52,11 +52,18 @@ <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> <!-- Distribution management --> <!-- Currently all artifacts will be uploaded to att-public-group reposiotry on Maven Central --> + <distributionManagement> + <site> + <id>ecomp-site</id> + <url>dav:${nexusproxy}${sitePath}</url> + </site> + </distributionManagement> <!-- End Distribution management --> @@ -291,6 +298,18 @@ <!-- --> <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> <version>2.10.4</version> <configuration> |