aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPamela Dragosh <pdragosh@research.att.com>2017-04-03 10:51:20 -0400
committerPamela Dragosh <pdragosh@research.att.com>2017-04-04 14:49:52 +0000
commitc9e4f0c0c4eeb4e6b17d811c445669b8df2a34f7 (patch)
treef9ea474ca3801cf420a47c0eabcb329d437cf637
parent043ac5e7df90d537a4732a68975edf6ecd35be6e (diff)
javadoc
Change-Id: I86b82b47f59c5dd6fcf22fd6d42e8fc932132e5b Signed-off-by: Pamela Dragosh <pdragosh@research.att.com> (cherry picked from commit 0cd54359bb675675936c2482da847078b0c1979f)
-rw-r--r--pom.xml38
1 files changed, 38 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index ee9510835..f03ed79e3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -32,6 +32,7 @@
<sonar.projectVersion>${project.version}</sonar.projectVersion>
<common-modules.version>[1.0.0-SNAPSHOT]</common-modules.version>
<nexusproxy>https://nexus.onap.org</nexusproxy>
+ <sitePath>/content/sites/site/org/onap/policy/${project.version}</sitePath>
</properties>
@@ -91,8 +92,33 @@
<name>OpenECOMP Snapshot Repository</name>
<url>${nexusproxy}/content/repositories/snapshots/</url>
</snapshotRepository>
+ <site>
+ <id>ecomp-site</id>
+ <url>dav:${nexusproxy}${sitePath}</url>
+ </site>
</distributionManagement>
+ <reporting>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>2.10.4</version>
+ <configuration>
+ <failOnError>false</failOnError>
+ <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
+ <docletArtifact>
+ <groupId>org.umlgraph</groupId>
+ <artifactId>umlgraph</artifactId>
+ <version>5.6</version>
+ </docletArtifact>
+ <additionalparam>-views</additionalparam>
+ <useStandardDocletOptions>true</useStandardDocletOptions>
+ </configuration>
+ </plugin>
+ </plugins>
+ </reporting>
+
<dependencies>
<dependency>
@@ -253,6 +279,18 @@
</execution>
</executions>
</plugin>
+ <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>
</plugins>
</build>
</project>