aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVenkata Harish K Kajur <vk250x@att.com>2017-04-10 18:57:17 +0000
committerVenkata Harish K Kajur <vk250x@att.com>2017-04-10 18:59:41 +0000
commit88a51202fbf15ee5ae794c5f8e0313d95d2cbec0 (patch)
treef8d5eb48a1e0609b7038c67e9b18762a11be48f1
parente54d5a10c4d8de75da8800e2d647039f85114563 (diff)
Fix the site:site issue creating errors
Change-Id: I98ce7270273a67bfed59697ffc9905233ba4e099 Signed-off-by: Venkata Harish K Kajur <vk250x@att.com>
-rw-r--r--pom.xml29
1 files changed, 29 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 3c694a0..ce05aa1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -23,6 +23,7 @@
<module.ajsc.namespace.name>ActiveAndAvailableInventory-CloudNetwork</module.ajsc.namespace.name>
<module.ajsc.namespace.version>v1</module.ajsc.namespace.version>
<nexusproxy>https://nexus.onap.org</nexusproxy>
+ <sitePath>/content/sites/site/${project.artifactId}/${project.version}</sitePath>
<ajscRuntimeVersion>2.0.0</ajscRuntimeVersion>
<!-- This will be the Absolute Root of the Project and should contain NO
@@ -65,6 +66,10 @@
<name>ECOMP Snapshot Repository</name>
<url>${nexusproxy}/content/repositories/snapshots/</url>
</snapshotRepository>
+ <site>
+ <id>ecomp-site</id>
+ <url>dav:${nexusproxy}${sitePath}</url>
+ </site>
</distributionManagement>
<!-- Plugins and repositories -->
@@ -352,6 +357,30 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.6</version>
+ <configuration>
+ <reportPlugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-project-info-reports-plugin</artifactId>
+ <version>2.4</version>
+ <configuration>
+ <dependencyDetailsEnabled>false</dependencyDetailsEnabled>
+ <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
+ </configuration>
+ <reports>
+ <report>dependencies</report>
+ </reports>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>2.8</version>
+ <configuration>
+ <additionalparam>-Xdoclint:none</additionalparam>
+ </configuration>
+ </plugin>
+ </reportPlugins>
+ </configuration>
<dependencies>
<dependency>
<groupId>org.apache.maven.wagon</groupId>