summaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorPamela Dragosh <pdragosh@research.att.com>2017-04-10 10:24:23 -0400
committerPamela Dragosh <pdragosh@research.att.com>2017-04-10 10:24:31 -0400
commitb67f417a751a98c4119ab4e8c2267e94c495a5de (patch)
tree297ab6d227b0fc7a32f63cad7c82caebbc46aebf /pom.xml
parente8bdb51109ab79a56dba79f5b300836ebd61e46d (diff)
javadoc details
Change-Id: I0d120d4439d9304fa66bf610488c03fdbf3e03c4 Signed-off-by: Pamela Dragosh <pdragosh@research.att.com>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml38
1 files changed, 36 insertions, 2 deletions
diff --git a/pom.xml b/pom.xml
index ed88c9fb..0eaf5f70 100644
--- a/pom.xml
+++ b/pom.xml
@@ -46,6 +46,7 @@
<sonar.jacoco.itReportPath>/opt/app/jacoco-it.exec</sonar.jacoco.itReportPath>
<sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>
<nexusproxy>https://nexus.onap.org</nexusproxy>
+ <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath>
</properties>
<modules>
@@ -106,8 +107,8 @@
<url>${nexusproxy}/content/repositories/snapshots/</url>
</snapshotRepository>
<site>
- <id>ecomp-javadoc</id>
- <url>dav:https://ecomp-nexus:8443/repository/policy-javadoc/${project.version}</url>
+ <id>ecomp-site</id>
+ <url>dav:${nexusproxy}${sitePath}</url>
</site>
</distributionManagement>
@@ -204,6 +205,18 @@
</excludes>
</configuration>
</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>
<pluginManagement>
<plugins>
@@ -232,4 +245,25 @@
</plugins>
</pluginManagement>
</build>
+ <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>
+
</project>