Author: mprudhom
Date: Mon Oct 30 18:28:47 2006
New Revision: 469341
URL: http://svn.apache.org/viewvc?view=rev&rev=469341
Log:
Force maven-javadoc-plugin to use version 2.1, since it works around a problem
with the 2.0 version of the plugin that doesn't add dependencies to the doc
class path.
Modified:
incubator/openjpa/trunk/pom.xml
Modified: incubator/openjpa/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/openjpa/trunk/pom.xml?view=diff&rev=469341&r1=469340&r2=469341
==============================================================================
--- incubator/openjpa/trunk/pom.xml (original)
+++ incubator/openjpa/trunk/pom.xml Mon Oct 30 18:28:47 2006
@@ -135,12 +135,14 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
+ <version>2.1</version>
<executions>
<execution>
<phase>package</phase>
<goals><goal>javadoc</goal></goals>
<configuration>
<aggregate>true</aggregate>
+ <verbose>false</verbose>
<!-- <linksource>true</linksource> -->
<maxmemory>512m</maxmemory>
<links>
@@ -246,34 +248,6 @@
<groupId>org.codehaus.mojo</groupId>
<artifactId>taglist-maven-plugin</artifactId>
</plugin>
-
- <!--
- note that findbugs might require a lot of memory; set it with:
- export MAVEN_OPTS=-Xmx1000M
- -->
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>findbugs-maven-plugin</artifactId>
- <version>1.0-beta-1</version>
- <configuration>
- <!-- <threshold>High|Normal|Low|Exp|Ignore</threshold> -->
- <threshold>Normal</threshold>
-
- <!-- <effort>Min|Default|Max</effort> -->
- <effort>Max</effort>
-
- <!--
- <excludeFilterFile>findbugs-exclude.xml</excludeFilterFile>
- <includeFilterFile>findbugs-include.xml</includeFilterFile>
- <visitors>FindDeadLocalStores,UnreadFields</visitors>
-
<omitVisitors>FindDeadLocalStores,UnreadFields</omitVisitors>
-
-
<pluginList>/libs/fb-contrib/fb-contrib-2.8.0.jar</pluginList>
- -->
- </configuration>
- </plugin>
-
-
</plugins>
</reporting>