[Plexus-svn] SF.net SVN: plexus:[874] trunk/plexus-graph/pom.xml
Status: Alpha
Brought to you by:
rconner
From: <rc...@us...> - 2010-09-10 22:36:37
|
Revision: 874 http://plexus.svn.sourceforge.net/plexus/?rev=874&view=rev Author: rconner Date: 2010-09-10 22:36:31 +0000 (Fri, 10 Sep 2010) Log Message: ----------- adding some reports Modified Paths: -------------- trunk/plexus-graph/pom.xml Modified: trunk/plexus-graph/pom.xml =================================================================== --- trunk/plexus-graph/pom.xml 2010-09-10 22:21:56 UTC (rev 873) +++ trunk/plexus-graph/pom.xml 2010-09-10 22:36:31 UTC (rev 874) @@ -114,9 +114,109 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.7</version> + <configuration> + <!-- External links don't work with site:run for some reason, + but javadoc:javadoc works just fine. --> + <links> + <link>http://commons.apache.org/collections/api-release/</link> + <link>http://logging.apache.org/log4j/1.2/apidocs/</link> + </links> + </configuration> + <reportSets> + <reportSet> + <reports> + <report>javadoc</report> + </reports> + </reportSet> + </reportSets> </plugin> <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jxr-plugin</artifactId> + <version>2.2</version> + <configuration> + <linkJavadoc>true</linkJavadoc> + </configuration> + <reportSets> + <reportSet> + <reports> + <report>jxr</report> + </reports> + </reportSet> + </reportSets> + </plugin> + + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>taglist-maven-plugin</artifactId> + <version>2.4</version> + <configuration> + <tagListOptions> + <tagClasses> + <tagClass> + <displayName>Things To Fix</displayName> + <tags> + <tag> + <matchString>FIXME</matchString> + <matchType>ignoreCase</matchType> + </tag> + </tags> + </tagClass> + <tagClass> + <displayName>Things To Do</displayName> + <tags> + <tag> + <matchString>TODO</matchString> + <matchType>ignoreCase</matchType> + </tag> + </tags> + </tagClass> + </tagClasses> + </tagListOptions> + </configuration> + </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-report-plugin</artifactId> + <version>2.6</version> + <configuration> + <showSuccess>false</showSuccess> + </configuration> + </plugin> + + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>jdepend-maven-plugin</artifactId> + <version>2.0-beta-2</version> + </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-checkstyle-plugin</artifactId> + <version>2.5</version> + <configuration> + <includeTestSourceDirectory>true</includeTestSourceDirectory> + <configLocation>${basedir}/src/main/config/checkstyle/checkstyle.xml</configLocation> + <headerLocation>${basedir}/src/main/config/checkstyle/checkstyle-header.txt</headerLocation> + </configuration> + </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-pmd-plugin</artifactId> + <version>2.5</version> + <configuration> + <targetJdk>1.5</targetJdk> + <includeTests>true</includeTests> + <rulesets> + <ruleset>${basedir}/src/main/config/pmd/ruleset.xml</ruleset> + </rulesets> + </configuration> + </plugin> + + <plugin> <!-- Version 2.3 no longer allows CDATA sections in the text content, and so doesn't allow formatting of any kind. Therefore, I'm sticking with version 2.2 --> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |