(no commit message)
authorErik Brakkee <erik@brakkee.org>
Mon, 4 Sep 2006 20:01:14 +0000 (20:01 +0000)
committerErik Brakkee <erik@brakkee.org>
Mon, 4 Sep 2006 20:01:14 +0000 (20:01 +0000)
pom.xml

diff --git a/pom.xml b/pom.xml
index a58eb1caf04377df1738db2cceff03f68169b0ef..70926ceed9439d816a9c0b15c73cb837e44c1b69 100644 (file)
--- a/pom.xml
+++ b/pom.xml
         <reportSets>
           <reportSet>
             <reports>
+              <report>checkstyle</report>
+                         <report>javadoc</report>
               <report>dependencies</report>
               <report>project-team</report>
               <report>mailing-list</report>
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>surefire-report-maven-plugin</artifactId>
       </plugin>
-         <plugin>
+      <!-- Test coverage reporting -->
+      <plugin>
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>cobertura-maven-plugin</artifactId>
       </plugin>
+      
+         <!-- checkstyle -->
+         <plugin>
+           <groupId>org.apache.maven.plugins</groupId>
+               <artifactId>maven-checkstyle-plugin</artifactId>
+               <configuration>
+                 <configLocation>config/sun_checks.xml</configLocation>
+               </configuration>
+         </plugin>
+         
+         <!-- taglist -->
+         <plugin>
+           <groupId>org.codehaus.mojo</groupId>
+               <artifactId>taglist-maven-plugin</artifactId>
+               <configuration>
+                 <tags>
+                   <tag>TODO</tag>
+                       <tag>@todo</tag>
+                       <tag>FIXME</tag>
+                 </tags>
+               </configuration>
+         </plugin>
+         
     </plugins>
   </reporting>