Author: ieb
Date: Thu Jul 24 05:33:33 2008
New Revision: 679392
URL: http://svn.apache.org/viewvc?rev=679392&view=rev
Log:
Added Tags Report, JDepend Report and Surefire Report.
Tags Report collects together all the TODO and FIXME tags in one place.
JDepend helps analysing dependency graphs and keeping API's clean
Surefire report will report on the unit tests (seperate from coverage)
Modified:
incubator/shindig/trunk/pom.xml
Modified: incubator/shindig/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/shindig/trunk/pom.xml?rev=679392&r1=679391&r2=679392&view=diff
==============================================================================
--- incubator/shindig/trunk/pom.xml (original)
+++ incubator/shindig/trunk/pom.xml Thu Jul 24 05:33:33 2008
@@ -731,6 +731,26 @@
<groupId>org.codehaus.mojo</groupId>
<artifactId>jxr-maven-plugin</artifactId>
</plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>jdepend-maven-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>taglist-maven-plugin</artifactId>
+ <configuration>
+ <tags>
+ <tag>TODO</tag>
+ <tag>FIXME</tag>
+ <tag>@todo</tag>
+ <tag>@deprecated</tag>
+ </tags>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-report-plugin</artifactId>
+ </plugin>
</plugins>
</reporting>
<!-- ======================================================================
-->