(no commit message)
[utils] / pom.xml
diff --git a/pom.xml b/pom.xml
index a58eb1caf04377df1738db2cceff03f68169b0ef..a599eea42d2a2de3e3aa8fc3863a9a6959cce667 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -13,6 +13,7 @@
     <module>socketproxy</module>
     <module>crawler</module>
     <module>gps</module>
+    <module>mythtv</module>
   </modules>
   <dependencies>
     <dependency>
         <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>