You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@knox.apache.org by km...@apache.org on 2013/09/28 00:35:14 UTC

git commit: KNOX-169: Rework surefire report configuration to hopefull get the PreCommit build to pass.

Updated Branches:
  refs/heads/master d7d65578c -> 8a91cb472


KNOX-169: Rework surefire report configuration to hopefull get the PreCommit build to pass.


Project: http://git-wip-us.apache.org/repos/asf/incubator-knox/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-knox/commit/8a91cb47
Tree: http://git-wip-us.apache.org/repos/asf/incubator-knox/tree/8a91cb47
Diff: http://git-wip-us.apache.org/repos/asf/incubator-knox/diff/8a91cb47

Branch: refs/heads/master
Commit: 8a91cb47253137b1e0a495194c950dcf2fec86dd
Parents: d7d6557
Author: Kevin Minder <ke...@hortonworks.com>
Authored: Fri Sep 27 18:35:08 2013 -0400
Committer: Kevin Minder <ke...@hortonworks.com>
Committed: Fri Sep 27 18:35:08 2013 -0400

----------------------------------------------------------------------
 pom.xml | 33 +++++++++++++++++++++++----------
 1 file changed, 23 insertions(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-knox/blob/8a91cb47/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 13ba233..864fc9c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -231,14 +231,18 @@
         <plugins>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-project-info-reports-plugin</artifactId>
-                <version>2.6</version>
-                <reportSets>
-                    <reportSet>
-                        <reports>
+                <artifactId>maven-site-plugin</artifactId>
+                <version>3.2</version>
+                <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>
-                            <report>dependencies</report>
                             <!--
+                            <report>dependencies</report>
                             <report>modules</report>
                             <report>project-team</report>
                             <report>mailing-list</report>
@@ -247,9 +251,14 @@
                             <report>cim</report>
                             <report>scm</report>
                             -->
-                        </reports>
-                    </reportSet>
-                </reportSets>
+                        </plugin>
+                        <plugin>
+                            <groupId>org.apache.maven.plugins</groupId>
+                            <artifactId>maven-surefire-report-plugin</artifactId>
+                            <version>2.6</version>
+                        </plugin>
+                    </reportPlugins>
+                </configuration>
             </plugin>
             <plugin>
                 <groupId>org.codehaus.mojo</groupId>
@@ -267,7 +276,6 @@
                 <artifactId>findbugs-maven-plugin</artifactId>
                 <version>2.5.2</version>
             </plugin>
-            <!-- Source code metrics: mvn javancss:report or mvn site -->
             <plugin>
                 <groupId>org.codehaus.mojo</groupId>
                 <artifactId>javancss-maven-plugin</artifactId>
@@ -288,6 +296,11 @@
                 </executions>
                 -->
             </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-surefire-report-plugin</artifactId>
+                <version>2.6</version>
+            </plugin>
         </plugins>
     </reporting>