Author: niallp
Date: Thu Jan 17 02:40:13 2008
New Revision: 612787
URL: http://svn.apache.org/viewvc?rev=612787&view=rev
Log:
update m1 & m2 builds
Modified:
commons/proper/lang/trunk/pom.xml
commons/proper/lang/trunk/project.xml
Modified: commons/proper/lang/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/commons/proper/lang/trunk/pom.xml?rev=612787&r1=612786&r2=612787&view=diff
==============================================================================
--- commons/proper/lang/trunk/pom.xml (original)
+++ commons/proper/lang/trunk/pom.xml Thu Jan 17 02:40:13 2008
@@ -365,19 +365,15 @@
</dependency>
</dependencies>
+ <properties>
+ <maven.compile.source>1.3</maven.compile.source>
+ <maven.compile.target>1.1</maven.compile.target>
+ </properties>
+
+
<build>
<sourceDirectory>src/java</sourceDirectory>
<testSourceDirectory>src/test</testSourceDirectory>
- <resources>
- <resource>
- <directory>.</directory>
- <targetPath>META-INF</targetPath>
- <includes>
- <include>NOTICE.txt</include>
- <include>LICENSE.txt</include>
- </includes>
- </resource>
- </resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
@@ -405,21 +401,36 @@
</build>
<reporting>
-
- <!-- N.B. The following can be removed once version 6
- of the commons-parent pom is released -->
<plugins>
<plugin>
- <artifactId>maven-javadoc-plugin</artifactId>
+ <artifactId>maven-checkstyle-plugin</artifactId>
+ <version>2.1</version>
<configuration>
- <source>${maven.compile.source}</source>
+ <configLocation>${basedir}/checkstyle.xml</configLocation>
+ <enableRulesSummary>false</enableRulesSummary>
</configuration>
</plugin>
<plugin>
- <artifactId>maven-checkstyle-plugin</artifactId>
- <version>2.1</version>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>findbugs-maven-plugin</artifactId>
+ <version>1.1.1</version>
<configuration>
- <configLocation>${basedir}/checkstyle.xml</configLocation>
+ <threshold>Normal</threshold>
+ <effort>Default</effort>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>cobertura-maven-plugin</artifactId>
+ <version>2.2</version>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>clirr-maven-plugin</artifactId>
+ <version>2.1.1</version>
+ <configuration>
+ <comparisonVersion>2.3</comparisonVersion>
+ <minSeverity>info</minSeverity>
</configuration>
</plugin>
</plugins>
Modified: commons/proper/lang/trunk/project.xml
URL:
http://svn.apache.org/viewvc/commons/proper/lang/trunk/project.xml?rev=612787&r1=612786&r2=612787&view=diff
==============================================================================
--- commons/proper/lang/trunk/project.xml (original)
+++ commons/proper/lang/trunk/project.xml Thu Jan 17 02:40:13 2008
@@ -385,9 +385,33 @@
</properties>
</dependency>
<dependency>
+ <groupId>maven</groupId>
+ <artifactId>maven-xdoc-plugin</artifactId>
+ <version>1.9.2</version>
+ <url>http://maven.apache.org/reference/plugins/xdoc/</url>
+ <type>plugin</type>
+ <properties>
+ <comment>
+ <strong>Site Only</strong> - v1.9.2 (minimum)
+ </comment>
+ </properties>
+ </dependency>
+ <dependency>
+ <groupId>maven-plugins</groupId>
+ <artifactId>maven-findbugs-plugin</artifactId>
+ <version>1.4</version>
+ <url>http://maven-plugins.sourceforge.net/maven-findbugs-plugin/</url>
+ <type>plugin</type>
+ <properties>
+ <comment>
+ <strong>Site Only</strong> - v1.9.2 (minimum)
+ </comment>
+ </properties>
+ </dependency>
+ <dependency>
<groupId>maven-plugins</groupId>
<artifactId>maven-cobertura-plugin</artifactId>
- <version>1.1.1</version>
+ <version>1.4</version>
<url>http://maven-plugins.sourceforge.net/maven-cobertura-plugin/</url>
<type>plugin</type>
<properties>