vhardy 2002/11/18 08:46:57 Modified: . build.xml Log: Added target to build a jar of the test infrastructure Revision Changes Path 1.119 +20 -1 xml-batik/build.xml Index: build.xml =================================================================== RCS file: /home/cvs/xml-batik/build.xml,v retrieving revision 1.118 retrieving revision 1.119 diff -u -r1.118 -r1.119 --- build.xml 28 Aug 2002 09:08:47 -0000 1.118 +++ build.xml 18 Nov 2002 16:46:57 -0000 1.119 @@ -791,6 +791,25 @@ jarfile="${build}/${project}.jar"/> </target> + <!-- regard.jar : A jar containing the regard test infrastructure. --> + <!-- This jar only contains the generic parts of the Batik test --> + <!-- infrastructure. --> + <target name="regard-jar" depends="compiletest, prepare-build"> + <jar jarfile="regard.jar"> + <fileset dir="${dest}"> + <include name="${package-prefix}/test/*.class" /> + <include name="${package-prefix}/test/xml/*.class" /> + <include name="${package-prefix}/i18n/Localizable.class" /> + <include name="${package-prefix}/i18n/LocalizableSupport.class" /> + <include name="${package-prefix}/i18n/LocaleGroup.class" /> + <include name="${package-prefix}/util/XMLConstants.class" /> + </fileset> + <fileset dir="${test-resources}"> + <include name="${package-prefix}/test/resources/*.properties" /> + <include name="${package-prefix}/test/xml/resources/*.properties" /> + </fileset> + </jar> + </target> <!-- Applications ....................................................... --> <target name="squiggle" depends="compile"
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]