aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPamela Dragosh <pdragosh@research.att.com>2017-04-07 09:02:32 -0400
committerPamela Dragosh <pdragosh@research.att.com>2017-04-10 16:15:03 +0000
commit89554766243c3fccbe875f2b12c00446460bfce1 (patch)
treeaa73b42356502ef7efcc95b59288eeb484b7f2dd
parent729ff10faf84cc6d59c251a8ea9678eaaf0f83c5 (diff)
adding Javadocrelease-1.0.0
Change-Id: Idd342413a7656accab9ab7751cc57392832eb8a2 Signed-off-by: Pamela Dragosh <pdragosh@research.att.com> (cherry picked from commit 17ee38b49635a2a1a5286c017369327b9491ada3)
-rw-r--r--pom.xml47
1 files changed, 46 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index 6dc3de133..6342f675d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -37,6 +37,7 @@
<project.source.version>1.8</project.source.version>
<project.target.version>1.8</project.target.version>
<nexusproxy>https://nexus.onap.org</nexusproxy>
+ <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath>
</properties>
<repositories>
@@ -55,6 +56,11 @@
<name>OpenECOMP Staging Repository</name>
<url>${nexusproxy}/content/repositories/staging/</url>
</repository>
+ <repository>
+ <id>ecomp-snapshots</id>
+ <name>OpenECOMP Snapshot Repository</name>
+ <url>${nexusproxy}/content/repositories/snapshots/</url>
+ </repository>
</repositories>
<build>
@@ -196,7 +202,21 @@
</configuration>
</plugin>
- </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>
+
+ </plugins>
</build>
<modules>
@@ -225,6 +245,31 @@
<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>
</project>