[jboss-cvs] JBossRemoting/src/etc ...

Tom Elrod tom.elrod at jboss.com
Mon Jul 31 16:08:18 EDT 2006


  User: telrod  
  Date: 06/07/31 16:08:18

  Modified:    src/etc  build.xml
  Log:
  JBREM-428 - added transporter multiple and proxy samples.
  
  Revision  Changes    Path
  1.12      +37 -1     JBossRemoting/src/etc/build.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/JBossRemoting/src/etc/build.xml,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -b -r1.11 -r1.12
  --- build.xml	31 Jul 2006 19:17:14 -0000	1.11
  +++ build.xml	31 Jul 2006 20:08:18 -0000	1.12
  @@ -9,7 +9,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.11 2006/07/31 19:17:14 telrod Exp $ -->
  +<!-- $Id: build.xml,v 1.12 2006/07/31 20:08:18 telrod Exp $ -->
   
   <project default="compile-sample-classes" name="JBoss/Remoting">
   
  @@ -185,6 +185,42 @@
          </java>
      </target>
   
  +   <target name="run-transporter-multiple-client" depends="compile-sample-classes">
  +             <java classname="org.jboss.remoting.samples.transporter.multiple.client.Client">
  +         <classpath>
  +           <pathelement location="${examples.root}"/>
  +           <path refid="library.classpath"/>
  +         </classpath>
  +       </java>
  +   </target>
  +
  +   <target name="run-transporter-multiple-server" depends="compile-sample-classes">
  +             <java classname="org.jboss.remoting.samples.transporter.multiple.server.Server">
  +         <classpath>
  +           <pathelement location="${examples.root}"/>
  +           <path refid="library.classpath"/>
  +         </classpath>
  +       </java>
  +   </target>
  +
  +   <target name="run-transporter-proxy-client" depends="compile-sample-classes">
  +             <java classname="org.jboss.remoting.samples.transporter.proxy.client.Client">
  +         <classpath>
  +           <pathelement location="${examples.root}"/>
  +           <path refid="library.classpath"/>
  +         </classpath>
  +       </java>
  +   </target>
  +
  +   <target name="run-transporter-proxy-server" depends="compile-sample-classes">
  +             <java classname="org.jboss.remoting.samples.transporter.proxy.server.Server">
  +         <classpath>
  +           <pathelement location="${examples.root}"/>
  +           <path refid="library.classpath"/>
  +         </classpath>
  +       </java>
  +   </target>
  +
      <target name="run-transporter-clustered-client" depends="compile-sample-classes">
                <java classname="org.jboss.remoting.samples.transporter.clustered.client.Client">
            <classpath>
  
  
  



More information about the jboss-cvs-commits mailing list