[jboss-remoting-commits] JBoss Remoting SVN: r4118 - remoting2/branches/2.x/src/etc.

jboss-remoting-commits at lists.jboss.org jboss-remoting-commits at lists.jboss.org
Thu May 1 23:31:16 EDT 2008


Author: ron.sigal at jboss.com
Date: 2008-05-01 23:31:16 -0400 (Thu, 01 May 2008)
New Revision: 4118

Modified:
   remoting2/branches/2.x/src/etc/build.xml
Log:
JBREM-773: Added targets to run bisocket example.

Modified: remoting2/branches/2.x/src/etc/build.xml
===================================================================
--- remoting2/branches/2.x/src/etc/build.xml	2008-05-02 03:16:37 UTC (rev 4117)
+++ remoting2/branches/2.x/src/etc/build.xml	2008-05-02 03:31:16 UTC (rev 4118)
@@ -257,6 +257,24 @@
        </java>
    </target>
 
+   <target name="run-bisocket-client" depends="compile-sample-classes">
+      <java classname="org.jboss.remoting.samples.bisocket.BisocketSampleClient">
+         <classpath>
+            <pathelement location="${examples.root}"/>
+            <path refid="library.classpath"/>
+         </classpath>
+      </java>
+   </target>
+
+   <target name="run-bisocket-server" depends="compile-sample-classes">
+      <java classname="org.jboss.remoting.samples.bisocket.BisocketSampleServer">
+         <classpath>
+            <pathelement location="${examples.root}"/>
+            <path refid="library.classpath"/>
+         </classpath>
+      </java>
+   </target>
+	
    <!-- check to see if running jdk1.5 -->
    <target name="get-jvm">
       <condition property="isJDK5">




More information about the jboss-remoting-commits mailing list