diff options
author | Manoop Talasila <talasila@research.att.com> | 2017-04-06 16:37:05 -0400 |
---|---|---|
committer | Manoop Talasila <talasila@research.att.com> | 2017-04-06 16:37:16 -0400 |
commit | e61d855d8e0e00fe147b78a37bb55cfb273811a2 (patch) | |
tree | b4d99f3bae940355266a9de5300fed8f45b28c90 /dcae_dmaapbc_webapp | |
parent | 3f431a9f7fbd2de4739510bae8b6ceb94d7809e3 (diff) |
onap nexus url added
Change-Id: I6a35a127974060b977ed472e892c9ed1f9a9fc31
Signed-off-by: Manoop Talasila <talasila@research.att.com>
Diffstat (limited to 'dcae_dmaapbc_webapp')
-rw-r--r-- | dcae_dmaapbc_webapp/pom.xml | 58 |
1 files changed, 25 insertions, 33 deletions
diff --git a/dcae_dmaapbc_webapp/pom.xml b/dcae_dmaapbc_webapp/pom.xml index 0b3c2fb..d84f1ba 100644 --- a/dcae_dmaapbc_webapp/pom.xml +++ b/dcae_dmaapbc_webapp/pom.xml @@ -27,27 +27,48 @@ <build.number>0</build.number> <sonar.exclusions>**.js</sonar.exclusions> <nexusproxy>https://nexus.onap.org</nexusproxy> - <sitePath>/content/sites/site/org/openecomp/ui/dmaapbc/${project.version}</sitePath> + <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath> </properties> + <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> + <repositories> <repository> <!-- Releases repository has ECOMP release artifacts --> <id>ecomp-releases</id> <name>OpenECOMP - Release Repository</name> - <url>https://nexus.openecomp.org/content/repositories/releases/</url> + <url>${nexusproxy}/${releaseNexusPath}</url> </repository> <repository> <!-- Snapshots repository has ECOMP snapshot artifacts --> <id>ecomp-snapshots</id> <name>OpenECOMP - Snapshot Repository</name> - <url>https://nexus.openecomp.org/content/repositories/snapshots/</url> + <url>${nexusproxy}/${snapshotNexusPath}</url> </repository> <repository> <!-- Staging repository has ECOMP staging artifacts --> <id>ecomp-staging</id> <name>OpenECOMP - Staging Repository</name> - <url>https://nexus.openecomp.org/content/repositories/staging/</url> + <url>${nexusproxy}/${stagingNexusPath}</url> </repository> </repositories> @@ -132,35 +153,6 @@ <target>1.8</target> </configuration> </plugin> - <!-- - Generate javadoc jar; see profile for Java 8. - This attempts to run dot (of graphviz), but failure - (missing program) does not stop the build. - --> - <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> - <executions> - <execution> - <id>attach-javadocs</id> - <goals> - <goal>jar</goal> - </goals> - </execution> - </executions> - </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> |