sebb 2004/10/29 09:52:21 Modified: . build.xml Log: Suppress compilation if JMS not present Revision Changes Path 1.195 +5 -3 jakarta-jmeter/build.xml Index: build.xml =================================================================== RCS file: /home/cvs/jakarta-jmeter/build.xml,v retrieving revision 1.194 retrieving revision 1.195 diff -u -r1.194 -r1.195 --- build.xml 29 Oct 2004 15:08:22 -0000 1.194 +++ build.xml 29 Oct 2004 16:52:21 -0000 1.195 @@ -718,7 +718,9 @@ </javac> </target> - <target name="compile-jms" depends="compile-jorphan,compile-core,compile-components"> + <target name="compile-jms" depends="compile-jorphan,compile-core,compile-components" + description="Compile components specific to JMS sampling." + if="jms.present"> <mkdir dir="${build.jms}"/> <javac srcdir="${src.jms}" destdir="${build.jms}" source="${src.java.version}" optimize="${optimize}" debug="on" target="${target.java.version}" deprecation="${deprecation}" encoding="${encoding}"> <include name="**/*.java"/>
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]