Adding changes report and filling out v1.0.1
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@788564 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f3ac86a292
commit
690b8e9ab6
18
pom.xml
18
pom.xml
|
@ -447,6 +447,22 @@
|
||||||
|
|
||||||
<reporting>
|
<reporting>
|
||||||
<plugins>
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-changes-plugin</artifactId>
|
||||||
|
<version>2.0</version>
|
||||||
|
<configuration>
|
||||||
|
<xmlPath>${basedir}/xdocs/changes.xml</xmlPath>
|
||||||
|
<issueLinkTemplate>%URL%/%ISSUE%</issueLinkTemplate>
|
||||||
|
</configuration>
|
||||||
|
<reportSets>
|
||||||
|
<reportSet>
|
||||||
|
<reports>
|
||||||
|
<report>changes-report</report>
|
||||||
|
</reports>
|
||||||
|
</reportSet>
|
||||||
|
</reportSets>
|
||||||
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<artifactId>maven-checkstyle-plugin</artifactId>
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
||||||
<version>2.1</version>
|
<version>2.1</version>
|
||||||
|
@ -456,6 +472,7 @@
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
<!-- Requires setting 'export MAVEN_OPTS="-Xmx512m" ' -->
|
<!-- Requires setting 'export MAVEN_OPTS="-Xmx512m" ' -->
|
||||||
|
<!--
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.codehaus.mojo</groupId>
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
<artifactId>findbugs-maven-plugin</artifactId>
|
<artifactId>findbugs-maven-plugin</artifactId>
|
||||||
|
@ -466,6 +483,7 @@
|
||||||
<excludeFilterFile>findbugs-exclude-filter.xml</excludeFilterFile>
|
<excludeFilterFile>findbugs-exclude-filter.xml</excludeFilterFile>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
-->
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.codehaus.mojo</groupId>
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
<artifactId>cobertura-maven-plugin</artifactId>
|
<artifactId>cobertura-maven-plugin</artifactId>
|
||||||
|
|
|
@ -21,36 +21,33 @@
|
||||||
</properties>
|
</properties>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<release version="3.0" date="Unreleased"
|
<release version="3.0" date="Unreleased" description="Backwards incompatible update of Commons Lang to Java 5">
|
||||||
description="Backwards incompatible update of Commons Lang to Java 5">
|
|
||||||
</release>
|
</release>
|
||||||
|
|
||||||
<release version="2.4" date="2008-03-18"
|
<release version="2.4" date="2008-03-18" description="">
|
||||||
description="">
|
|
||||||
</release>
|
</release>
|
||||||
|
|
||||||
<release version="2.3" date="2007-02-13"
|
<release version="2.3" date="2007-02-13" description="">
|
||||||
description="">
|
|
||||||
</release>
|
</release>
|
||||||
|
|
||||||
<release version="2.2" date="2006-10-04"
|
<release version="2.2" date="2006-10-04" description="">
|
||||||
description="">
|
|
||||||
</release>
|
</release>
|
||||||
|
|
||||||
<release version="2.1" date="2005-06-13"
|
<release version="2.1" date="2005-06-13" description="">
|
||||||
description="">
|
|
||||||
</release>
|
</release>
|
||||||
|
|
||||||
<release version="2.0" date="2003-09-02"
|
<release version="2.0" date="2003-09-02" description="">
|
||||||
description="">
|
|
||||||
</release>
|
</release>
|
||||||
|
|
||||||
<release version="1.0.1" date="2002-11-25"
|
<release version="1.0.1" date="2002-11-25" description="Quick bugfix to 1.0">
|
||||||
description="Quick bugfix to 1.0">
|
<action type="fix">NumberRange.getMaximum returns minimum</action>
|
||||||
|
<action type="fix">Enum constructor validations</action>
|
||||||
|
<action type="fix">NestableException/Delegate is not serializable</action>
|
||||||
|
<action type="fix">split using null and max less than actual token count adds "null"</action>
|
||||||
|
<action type="add">ExceptionUtils cannot handle J2EE-Exception in a default way</action>
|
||||||
</release>
|
</release>
|
||||||
|
|
||||||
<release version="1.0" date="2002-10-04"
|
<release version="1.0" date="2002-10-04" description="First release of Commons Lang">
|
||||||
description="First release of Commons Lang">
|
|
||||||
</release>
|
</release>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
Loading…
Reference in New Issue