[LANG-718] build.xml Java 1.5+ updates.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1144999 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9d6bc2827e
commit
d12a0bf808
|
@ -103,7 +103,8 @@ IMPROVEMENTS IN 3.0
|
||||||
[LANG-668] Change ObjectUtils min() & max() functions to use varargs rather than just two parameters
|
[LANG-668] Change ObjectUtils min() & max() functions to use varargs rather than just two parameters
|
||||||
[LANG-681] Push down WordUtils to "text" sub-package.
|
[LANG-681] Push down WordUtils to "text" sub-package.
|
||||||
[LANG-711] Add includeantruntime=false to javac targets to quell warnings in ant 1.8.1 and better (and modest performance gain).
|
[LANG-711] Add includeantruntime=false to javac targets to quell warnings in ant 1.8.1 and better (and modest performance gain).
|
||||||
[LANG-713] Increase test coverage of FieldUtils read methods and tweak javadoc
|
[LANG-713] Increase test coverage of FieldUtils read methods and tweak javadoc.
|
||||||
|
[LANG-718] build.xml Java 1.5+ updates.
|
||||||
|
|
||||||
BUG FIXES IN 3.0
|
BUG FIXES IN 3.0
|
||||||
================
|
================
|
||||||
|
|
|
@ -29,8 +29,7 @@
|
||||||
<property file="${user.home}/build.properties"/>
|
<property file="${user.home}/build.properties"/>
|
||||||
<property file="${basedir}/build.properties"/>
|
<property file="${basedir}/build.properties"/>
|
||||||
<property file="${basedir}/default.properties"/>
|
<property file="${basedir}/default.properties"/>
|
||||||
<!-- The Sun Javadoc for versions prior to 1.3 are off-line. -->
|
<property name="jdk.javadoc" value="http://download.oracle.com/javase/1.5.0/docs/api/"/>
|
||||||
<property name="jdk.javadoc" value="http://java.sun.com/j2se/1.3/docs/api/"/>
|
|
||||||
|
|
||||||
<!-- ========== Construct compile classpath =============================== -->
|
<!-- ========== Construct compile classpath =============================== -->
|
||||||
<path id="compile.classpath">
|
<path id="compile.classpath">
|
||||||
|
@ -54,7 +53,6 @@
|
||||||
<filter token="compile.source" value="${compile.source}"/>
|
<filter token="compile.source" value="${compile.source}"/>
|
||||||
<filter token="compile.target" value="${compile.target}"/>
|
<filter token="compile.target" value="${compile.target}"/>
|
||||||
<mkdir dir="${build.home}"/>
|
<mkdir dir="${build.home}"/>
|
||||||
<available property="jdk.1.5.present" classname="java.lang.StringBuilder"/>
|
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<!-- ========== Compile Targets ========================================= -->
|
<!-- ========== Compile Targets ========================================= -->
|
||||||
|
|
|
@ -21,7 +21,8 @@
|
||||||
</properties>
|
</properties>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<release version="3.0" date="Unreleased" description="Backwards incompatible update of Commons Lang to Java 5">
|
<release version="3.0" date="Unreleased" description="Backwards incompatible update of Commons Lang to Java 5">
|
||||||
|
<action type="update" issue="LANG-718">build.xml Java 1.5+ updates.</action>
|
||||||
<action type="fix" issue="LANG-716">swapCase and *capitalize speedups.</action>
|
<action type="fix" issue="LANG-716">swapCase and *capitalize speedups.</action>
|
||||||
<action type="fix" issue="LANG-715">CharSetUtils.squeeze() speedup.</action>
|
<action type="fix" issue="LANG-715">CharSetUtils.squeeze() speedup.</action>
|
||||||
<action type="fix" issue="LANG-714">StringUtils doc/comment spelling fixes.</action>
|
<action type="fix" issue="LANG-714">StringUtils doc/comment spelling fixes.</action>
|
||||||
|
|
Loading…
Reference in New Issue