Enabling javadoc in mvn site. I removed the test code that was failing (IMO javadocs for test code is prettry much useless).

Note: pmd-plugin fails on my laptop, so i commented it out for me. I'm the only ? Does anyone has issue with this plugin ?

git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/trunk@6043 51baf565-9d33-0410-a72c-fc3788e3496d
This commit is contained in:
Romain Pelisse
2008-04-18 15:20:29 +00:00
parent 30c5f85bdd
commit aaef5c4f0d

View File

@ -360,12 +360,16 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
</plugin>
<!--
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin> -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<!-- Removing test classes, some make fail the build and site goals is already taking a long time -->
<excludePackageNames>test.*</excludePackageNames>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>