diff options
author | Venkata Harish K Kajur <vk250x@att.com> | 2017-09-08 02:07:43 +0000 |
---|---|---|
committer | Venkata Harish K Kajur <vk250x@att.com> | 2017-09-08 02:08:33 +0000 |
commit | 822f121b2660577b80cc6171c30b528d00aae30a (patch) | |
tree | c73d0244e6d718f37e05ab3de19223eaeae93d0d | |
parent | e08ff66979e68caf67f9fff081742b609f84b9b4 (diff) |
Update traversal to fix stage issues
Issue-ID: AAI-76
Change-Id: I77378b889067d4e6b3d1e6b7c4a684e6da6ba11e
Signed-off-by: Venkata Harish K Kajur <vk250x@att.com>
-rw-r--r-- | pom.xml | 36 |
1 files changed, 36 insertions, 0 deletions
@@ -307,6 +307,42 @@ </dependency> </dependencies> </plugin> + <plugin> + <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> + <artifactId>wagon-webdav-jackrabbit</artifactId> + <version>2.10</version> + </dependency> + </dependencies> + </plugin> </plugins> </build> <reporting> |