[jboss-cvs] JBoss Messaging SVN: r5904 - trunk/examples/jms.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Feb 19 12:36:48 EST 2009


Author: ataylor
Date: 2009-02-19 12:36:47 -0500 (Thu, 19 Feb 2009)
New Revision: 5904

Modified:
   trunk/examples/jms/build.xml
Log:
added target


Modified: trunk/examples/jms/build.xml
===================================================================
--- trunk/examples/jms/build.xml	2009-02-19 16:22:28 UTC (rev 5903)
+++ trunk/examples/jms/build.xml	2009-02-19 17:36:47 UTC (rev 5904)
@@ -217,6 +217,16 @@
       </java>
    </target>
 
+   <target name="Sender" depends="compile" description="-> run performance test when sending to a queue">
+      <java classname="org.jboss.jms.example.Sender" fork="true">
+         <classpath refid="runtime.classpath"/>
+         <jvmarg value="-Xmx512M"/>
+         <jvmarg value="-XX:+UseParallelGC"/>
+         <jvmarg value="-XX:+AggressiveOpts"/>
+         <jvmarg value="-XX:+UseFastAccessorMethods"/>
+      </java>
+   </target>
+
    <target name="perfNonTransactionalSender" depends="compile"
            description="-> run performance test when sending to a queue">
       <antcall target="perfSender">
@@ -250,10 +260,11 @@
       </antcall>
    </target>
 
+
    <target name="jar" depends="compile">
       <jar destfile="${build.dir}/mdb-example.jar"
            basedir="${build.dir}"
-           includes="**/*.class">
+           includes="**/EJB3*.class">
       </jar>
    </target>
 




More information about the jboss-cvs-commits mailing list