You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2013/04/06 18:23:57 UTC

svn commit: r1465269 - in /commons/proper/codec/trunk: build.xml default.properties

Author: ggregory
Date: Sat Apr  6 16:23:57 2013
New Revision: 1465269

URL: http://svn.apache.org/r1465269
Log:
Fix Ant build.

Modified:
    commons/proper/codec/trunk/build.xml
    commons/proper/codec/trunk/default.properties

Modified: commons/proper/codec/trunk/build.xml
URL: http://svn.apache.org/viewvc/commons/proper/codec/trunk/build.xml?rev=1465269&r1=1465268&r2=1465269&view=diff
==============================================================================
--- commons/proper/codec/trunk/build.xml (original)
+++ commons/proper/codec/trunk/build.xml Sat Apr  6 16:23:57 2013
@@ -34,6 +34,7 @@ limitations under the License.
         <pathelement location="${resources.home}"/>
         <pathelement location="${build.home}/tests"/>
         <pathelement location="${junit.jar}"/>
+        <pathelement location="${hamcrest.jar}"/>
     </path>
     <!-- ========== Executable Targets ======================================== -->
     <target name="init" description="Initialize and evaluate conditionals">

Modified: commons/proper/codec/trunk/default.properties
URL: http://svn.apache.org/viewvc/commons/proper/codec/trunk/default.properties?rev=1465269&r1=1465268&r2=1465269&view=diff
==============================================================================
--- commons/proper/codec/trunk/default.properties (original)
+++ commons/proper/codec/trunk/default.properties Sat Apr  6 16:23:57 2013
@@ -21,8 +21,15 @@
 repository=${user.home}/.m2/repository
 
 # The pathname of the "junit.jar" JAR file
-junit.home=${repository}/junit/junit/4.11
-junit.jar = ${junit.home}/junit-4.11.jar
+junit.module=junit
+junit.version=4.11
+junit.home=${repository}/junit/${junit.module}/${junit.version}
+junit.jar = ${junit.home}/${junit.module}-${junit.version}.jar
+
+hamcrest.module=hamcrest-core
+hamcrest.version=1.3
+hamcrest.home=${repository}/org/hamcrest/${hamcrest.module}/${hamcrest.version}
+hamcrest.jar=${hamcrest.home}/${hamcrest.module}-${hamcrest.version}.jar
 
 # The name of this component
 component.name = commons-codec