You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2012/04/14 03:15:57 UTC

svn commit: r1326035 - /commons/proper/pool/trunk/build.xml

Author: sebb
Date: Sat Apr 14 01:15:57 2012
New Revision: 1326035

URL: http://svn.apache.org/viewvc?rev=1326035&view=rev
Log:
Fix up classpath for test resources

Modified:
    commons/proper/pool/trunk/build.xml

Modified: commons/proper/pool/trunk/build.xml
URL: http://svn.apache.org/viewvc/commons/proper/pool/trunk/build.xml?rev=1326035&r1=1326034&r2=1326035&view=diff
==============================================================================
--- commons/proper/pool/trunk/build.xml (original)
+++ commons/proper/pool/trunk/build.xml Sat Apr 14 01:15:57 2012
@@ -46,6 +46,7 @@
       <property name="src.dir" value="${basedir}/src"/>
       <property name="src.java.dir" value="${src.dir}/main/java"/>
       <property name="src.test.dir" value="${src.dir}/test/java"/>
+      <property name="src.testresources.dir" value="${src.dir}/test/resources"/>
       <property name="build.dir" value="${basedir}/build"/>
       <property name="build.classes.dir" value="${build.dir}/classes"/>
       <property name="build.test-classes.dir" value="${build.dir}/test-classes"/>
@@ -136,6 +137,7 @@
           <pathelement location="${build.classes.dir}" /> 
           <pathelement location="${build.test-classes.dir}" /> 
           <pathelement path="${classpath}" /> 
+          <pathelement location="${src.testresources.dir}" /> 
         </classpath>
         <!-- If test.entry is defined, run a single test, otherwise run all valid tests -->
         <test name="${test.entry}" if="test.entry"/>