Hi,

I have just tried entering this in bugzilla but the post_bug.cgi was
404ing!

When running "ant test" org.apache.commons.cli2.resource.ResourceHelperTest was
failing as it needs a .properties file copying from src/test to
target/test-classes/

I have created a patch to build.xml (attached) which has a <copy> which copies
.properties files for tests in much the same way as the existing one for
src/java

If there is anything else I can do just email.

cheers
Andrew Shirley
Index: build.xml
===================================================================
--- build.xml   (revision 386350)
+++ build.xml   (working copy)
@@ -160,6 +160,12 @@
         </pathelement>
       </classpath>
     </javac>
+    <copy todir="${testclassesdir}/org/apache/commons/cli2">
+      <fileset dir="${basedir}/src/test/org/apache/commons/cli2">
+        <include name="**/*.properties">
+        </include>
+      </fileset>
+    </copy>
   </target>
   <target name="javadoc" description="o Generate javadoc" depends="get-deps">
     <mkdir dir="${javadocdir}">
@@ -236,4 +242,4 @@
     <unjar dest="${maven.home}" src="${user.home}/maven-install-latest.jar">
     </unjar>
   </target>
-</project>
\ No newline at end of file
+</project>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to