Repository: knox Updated Branches: refs/heads/master 235f96856 -> f6acd1d1f
KNOX-1482 - Migrate to maven-site-plugin reportSets Signed-off-by: Kevin Risden <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/knox/repo Commit: http://git-wip-us.apache.org/repos/asf/knox/commit/f6acd1d1 Tree: http://git-wip-us.apache.org/repos/asf/knox/tree/f6acd1d1 Diff: http://git-wip-us.apache.org/repos/asf/knox/diff/f6acd1d1 Branch: refs/heads/master Commit: f6acd1d1f0cbb614d2decd7414a146491848b4b4 Parents: 235f968 Author: Kevin Risden <[email protected]> Authored: Tue Oct 2 11:26:57 2018 -0400 Committer: Kevin Risden <[email protected]> Committed: Tue Oct 2 12:05:18 2018 -0400 ---------------------------------------------------------------------- pom.xml | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/knox/blob/f6acd1d1/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 4fe0fab..84542cc 100644 --- a/pom.xml +++ b/pom.xml @@ -498,18 +498,6 @@ <artifactId>maven-site-plugin</artifactId> <configuration> <generateReports>true</generateReports> - <reportPlugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-project-info-reports-plugin</artifactId> - <version>2.2</version> - <report>index</report> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-surefire-report-plugin</artifactId> - </plugin> - </reportPlugins> </configuration> </plugin> <plugin> @@ -520,6 +508,17 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-project-info-reports-plugin</artifactId> + <reportSets> + <reportSet> + <reports> + <report>index</report> + </reports> + </reportSet> + </reportSets> + </plugin> </plugins> </reporting>
