Skip to content

Commit

Permalink
SAK-20961 override purepoms javadoc plugin with <excludePackageNames>…
Browse files Browse the repository at this point in the history
… for commented out test classes.

git-svn-id: https://source.sakaiproject.org/svn/common/trunk@99551 66ffb92e-73f9-0310-93c1-f5514f145a0a
  • Loading branch information
arwhyte committed Oct 14, 2011
1 parent 00ec66b commit 1125f00
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -225,4 +225,35 @@
-->
</dependencies>
</dependencyManagement>

<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8</version>
<configuration>
<debug>true</debug>
<links>
<link>http://download.oracle.com/javase/1.5.0/docs/api/</link>
<link>http://download.oracle.com/javase/6/docs/api/</link>
</links>
<breakiterator>true</breakiterator>
<verbose>false</verbose>
<aggregate>true</aggregate>
<minmemory>168m</minmemory>
<maxmemory>1024m</maxmemory>
<additionalJOption>-J-Xms168m -J-Xmx1024m -J-XX:PermSize=128m -J-XX:NewSize=64m</additionalJOption>
<!-- SAK-20961 exclude commented out test classes -->
<excludePackageNames>org.sakaiproject.api.common.edu.person:org.sakaiproject.api.common.type</excludePackageNames>
</configuration>
</plugin>
<plugin>
<inherited>true</inherited>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>2.8</version>
</plugin>
</plugins>
</reporting>
</project>

0 comments on commit 1125f00

Please sign in to comment.