Setting version to 3.3. Adding reports. Setting source/target version to Java 1.3
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@776948 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
3e05de76a4
commit
669dcc8c99
44
pom.xml
44
pom.xml
|
@ -27,7 +27,7 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>commons-collections</groupId>
|
||||
<artifactId>commons-collections</artifactId>
|
||||
<version>3.3-SNAPSHOT</version>
|
||||
<version>3.3</version>
|
||||
<name>Commons Collections</name>
|
||||
|
||||
<inceptionYear>2001</inceptionYear>
|
||||
|
@ -381,12 +381,15 @@
|
|||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||
<maven.compile.source>1.3</maven.compile.source>
|
||||
<maven.compile.target>1.3</maven.compile.target>
|
||||
<commons.componentid>collections</commons.componentid>
|
||||
<commons.release.version>3.2.1</commons.release.version>
|
||||
<commons.release.version>3.3-RC1</commons.release.version>
|
||||
<commons.jira.id>COLLECTIONS</commons.jira.id>
|
||||
<commons.jira.pid>12310465</commons.jira.pid>
|
||||
</properties>
|
||||
|
||||
|
||||
<build>
|
||||
<sourceDirectory>src/java</sourceDirectory>
|
||||
<testSourceDirectory>src/test</testSourceDirectory>
|
||||
|
@ -448,6 +451,43 @@
|
|||
</links>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-checkstyle-plugin</artifactId>
|
||||
<version>2.1</version>
|
||||
<configuration>
|
||||
<configLocation>${basedir}/checkstyle.xml</configLocation>
|
||||
<enableRulesSummary>false</enableRulesSummary>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<!-- Requires setting 'export MAVEN_OPTS="-Xmx512m" ' - and still fails -->
|
||||
<!--
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>findbugs-maven-plugin</artifactId>
|
||||
<version>1.2</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>
|
||||
<!-- Fails with Exception -->
|
||||
<!--
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>clirr-maven-plugin</artifactId>
|
||||
<version>2.2.2</version>
|
||||
<configuration>
|
||||
<comparisonVersion>3.2</comparisonVersion>
|
||||
<minSeverity>info</minSeverity>
|
||||
</configuration>
|
||||
</plugin>
|
||||
-->
|
||||
</plugins>
|
||||
</reporting>
|
||||
|
||||
|
|
Loading…
Reference in New Issue