You are viewing a plain text version of this content. The canonical link for it is here.
Posted to kalumet-commits@incubator.apache.org by ol...@apache.org on 2012/07/09 19:47:41 UTC

svn commit: r1359364 - /incubator/kalumet/trunk/kalumet-modules/pom.xml

Author: olamy
Date: Mon Jul  9 19:47:41 2012
New Revision: 1359364

URL: http://svn.apache.org/viewvc?rev=1359364&view=rev
Log:
add some basic reporting for code part

Modified:
    incubator/kalumet/trunk/kalumet-modules/pom.xml

Modified: incubator/kalumet/trunk/kalumet-modules/pom.xml
URL: http://svn.apache.org/viewvc/incubator/kalumet/trunk/kalumet-modules/pom.xml?rev=1359364&r1=1359363&r2=1359364&view=diff
==============================================================================
--- incubator/kalumet/trunk/kalumet-modules/pom.xml (original)
+++ incubator/kalumet/trunk/kalumet-modules/pom.xml Mon Jul  9 19:47:41 2012
@@ -41,4 +41,56 @@
     <module>controller</module>
   </modules>
 
+  <reporting>
+      <plugins>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-project-info-reports-plugin</artifactId>
+          <version>2.4</version>
+        </plugin>
+
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-javadoc-plugin</artifactId>
+          <version>2.8.1</version>
+          <reportSets>
+            <reportSet>
+              <reports>
+                <report>javadoc</report>
+              </reports>
+            </reportSet>
+            <reportSet>
+              <inherited>false</inherited>
+              <reports>
+                <report>aggregate</report>
+              </reports>
+            </reportSet>
+          </reportSets>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-jxr-plugin</artifactId>
+          <version>2.2</version>
+        </plugin>
+        <plugin>
+          <groupId>org.codehaus.sonar-plugins</groupId>
+          <artifactId>maven-report</artifactId>
+          <version>0.1</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-checkstyle-plugin</artifactId>
+          <version>2.9.1</version>
+          <inherited>false</inherited>
+          <reportSets>
+            <reportSet>
+              <reports>
+                <report>checkstyle-aggregate</report>
+              </reports>
+            </reportSet>
+          </reportSets>
+        </plugin>
+      </plugins>
+    </reporting>
+
 </project>