update m1 & m2 builds
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@612787 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5cb16e839d
commit
0dfc77769f
49
pom.xml
49
pom.xml
|
@ -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>
|
||||
<configuration>
|
||||
<source>${maven.compile.source}</source>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-checkstyle-plugin</artifactId>
|
||||
<version>2.1</version>
|
||||
<configuration>
|
||||
<configLocation>${basedir}/checkstyle.xml</configLocation>
|
||||
<enableRulesSummary>false</enableRulesSummary>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>findbugs-maven-plugin</artifactId>
|
||||
<version>1.1.1</version>
|
||||
<configuration>
|
||||
<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>
|
||||
|
|
26
project.xml
26
project.xml
|
@ -384,10 +384,34 @@ limitations under the License.
|
|||
<comment>Required only for testing.</comment>
|
||||
</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>
|
||||
|
|
Loading…
Reference in New Issue