Author: psteitz
Date: Thu May 21 17:44:12 2015
New Revision: 1680934
URL: http://svn.apache.org/r1680934
Log:
Updated ant build dependencies.
Modified:
commons/proper/pool/trunk/build.properties.sample
commons/proper/pool/trunk/build.xml
Modified: commons/proper/pool/trunk/build.properties.sample
URL:
http://svn.apache.org/viewvc/commons/proper/pool/trunk/build.properties.sample?rev=1680934&r1=1680933&r2=1680934&view=diff
==============================================================================
--- commons/proper/pool/trunk/build.properties.sample (original)
+++ commons/proper/pool/trunk/build.properties.sample Thu May 21 17:44:12 2015
@@ -24,17 +24,22 @@
repository=${user.home}/.m2/repository
# cglib
-cglib.home=${repository}/cglib/cglib/3.0
-cglib.jar=${cglib.home}/cglib-3.0.jar
+cglib.home=${repository}/cglib/cglib/3.1
+cglib.jar=${cglib.home}/cglib-3.1.jar
# asm-util
-asm-util.home=${repository}/org/ow2/asm/asm-util/4.0
-asm-util.jar=${asm-util.home}/asm-util-4.0.jar
+asm-util.home=${repository}/org/ow2/asm/asm-util/5.0.4
+asm-util.jar=${asm-util.home}/asm-util-5.0.4.jar
+
+# asm-tree
+asm-tree.home=${repository}/org/ow2/asm/asm-tree/5.0.4
+asm-tree.jar=${asm-tree.home}/asm-tree-5.0.4.jar
# asm
-asm.home=${repository}/org/ow2/asm/asm/4.0
-asm.jar=${asm.home}/asm-4.0.jar
+asm.home=${repository}/org/ow2/asm/asm/5.0.4
+asm.jar=${asm.home}/asm-5.0.4.jar
# JUnit
-junit.home=${repository}/junit/junit/4.10
-junit.jar=${junit.home}/junit-4.10.jar
+junit.home=${repository}/junit/junit/4.12
+junit.jar=${junit.home}/junit-4.12.jar
+hamcrest.jar=${repository}/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar
Modified: commons/proper/pool/trunk/build.xml
URL:
http://svn.apache.org/viewvc/commons/proper/pool/trunk/build.xml?rev=1680934&r1=1680933&r2=1680934&view=diff
==============================================================================
--- commons/proper/pool/trunk/build.xml (original)
+++ commons/proper/pool/trunk/build.xml Thu May 21 17:44:12 2015
@@ -37,7 +37,8 @@
<property name="cp" value=""/>
<!-- now combine the classpaths -->
- <property name="classpath"
value="${cp}:${cglib.jar}:${asm.jar}:${asm-util.jar}:${junit.jar}"/>
+ <property name="classpath"
+
value="${cp}:${cglib.jar}:${asm.jar}:${asm-util.jar}:${asm-tree.jar}:${junit.jar}:${hamcrest.jar}"/>
<property name="name" value="commons-pool2"/>
<property name="title" value="Apache Commons Object Pooling Package"/>