LANG-937: Fix missing Hamcrest dependency in Ant Build

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1554848 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benedikt Ritter 2014-01-02 17:06:53 +00:00
parent 15a51f1d1a
commit 0f2e42d6ee
4 changed files with 9 additions and 0 deletions

View File

@ -25,3 +25,4 @@ repository=${user.home}/.m2/repository
junit.home=${repository}/junit/junit/4.11/
easymock.home=${repository}/org/easymock/easymock/3.2/
commons-io.home=${repository}/commons-io/commons-io/2.4/
hamcrest.home=${repository}/org/hamcrest/hamcrest-core/1.3/

View File

@ -44,6 +44,7 @@
<pathelement location="${junit.jar}"/>
<pathelement location="${easymock.jar}"/>
<pathelement location="${commons-io.jar}"/>
<pathelement location="${hamcrest.jar}"/>
</path>
<!-- ========== Executable Targets ======================================== -->

View File

@ -26,6 +26,9 @@ easymock.jar = ${easymock.home}/easymock-3.2.jar
# The location of the Commons-IO jar
commons-io.jar = ${commons-io.home}/commons-io-2.4.jar
# The location of Hamcrest jar
hamcrest.jar = ${hamcrest.home}/hamcrest-core-1.3.jar
# Whether or not to fork tests
junit.fork = true

View File

@ -21,6 +21,10 @@
</properties>
<body>
<release version="3.2.1" date="TBA" description="Bug fix for 3.2">
<action issue="LANG-937" type="fix" dev="britter">Fix missing Hamcrest dependency in Ant Build</action>
</release>
<release version="3.2" date="2014-01-01" description="Bug fixes and new features, at least requires Java 6.0">
<action issue="LANG-934" type="add" dev="mcucchiara">Add removeFinalModifier to FieldUtils</action>
<action issue="LANG-863" type="add" due-to="Daneel S. Yaitskov" dev="sebb">Method returns number of inheritance hops between parent and subclass</action>