Author: sebb Date: Thu Apr 30 18:49:23 2009 New Revision: 770389 URL: http://svn.apache.org/viewvc?rev=770389&view=rev Log: Add target to create translator resource zip
Modified: jakarta/jmeter/trunk/build.xml Modified: jakarta/jmeter/trunk/build.xml URL: http://svn.apache.org/viewvc/jakarta/jmeter/trunk/build.xml?rev=770389&r1=770388&r2=770389&view=diff ============================================================================== --- jakarta/jmeter/trunk/build.xml (original) +++ jakarta/jmeter/trunk/build.xml Thu Apr 30 18:49:23 2009 @@ -1403,6 +1403,17 @@ </zip> </target> + <!-- Create a zip of all resource files for translators --> + <target name="pack-resources"> + <mkdir dir="${dist.dir}"/> + <zip zipfile="${dist.dir}/resources.zip"> + <zipfileset dir="." defaultexcludes="yes"> + <patternset includes="${src.dir}/**/*Resources.properties" /> + <patternset includes="${src.dir}/**/messages.properties" /> + </zipfileset> + </zip> + </target> + <!-- Utility target to create MD5 checksums in standard format (with *filename) Usage: @@ -1793,7 +1804,6 @@ <target name="junit" description="Run individual JUnit test"> <mkdir dir="reports"/> <property name="test.format" value="brief"/> - <property name="test.case1" value="org.apache.jmeter.junit.JMeterTest"/> <property name="test.case" value="org.apache.jorphan.test.AllTests"/> <junit fork="true" dir="${basedir}/bin" --------------------------------------------------------------------- To unsubscribe, e-mail: jmeter-dev-unsubscr...@jakarta.apache.org For additional commands, e-mail: jmeter-dev-h...@jakarta.apache.org