Author: ron.sigal(a)jboss.com
Date: 2008-05-29 00:31:44 -0400 (Thu, 29 May 2008)
New Revision: 4265
Modified:
remoting2/branches/2.x/src/etc/build.xml
Log:
JBREm-987: <java> targets fork to avoid ant security manager.
Modified: remoting2/branches/2.x/src/etc/build.xml
===================================================================
--- remoting2/branches/2.x/src/etc/build.xml 2008-05-29 04:08:13 UTC (rev 4264)
+++ remoting2/branches/2.x/src/etc/build.xml 2008-05-29 04:31:44 UTC (rev 4265)
@@ -42,7 +42,7 @@
</target>
<target name="run-simple-client"
depends="compile-sample-classes">
- <java
classname="org.jboss.remoting.samples.simple.SimpleClient">
+ <java
classname="org.jboss.remoting.samples.simple.SimpleClient"
fork="yes">
<classpath>
<pathelement location="${examples.root}"/>
<path refid="library.classpath"/>
@@ -51,7 +51,7 @@
</target>
<target name="run-simple-server"
depends="compile-sample-classes">
- <java
classname="org.jboss.remoting.samples.simple.SimpleServer">
+ <java
classname="org.jboss.remoting.samples.simple.SimpleServer"
fork="yes">
<classpath>
<pathelement location="${examples.root}"/>
<path refid="library.classpath"/>
@@ -60,7 +60,7 @@
</target>
<target name="run-http-client"
depends="compile-sample-classes">
- <java
classname="org.jboss.remoting.samples.http.SimpleClient">
+ <java classname="org.jboss.remoting.samples.http.SimpleClient"
fork="yes">
<classpath>
<pathelement location="${examples.root}"/>
<path refid="library.classpath"/>
@@ -69,7 +69,7 @@
</target>
<target name="run-http-server"
depends="compile-sample-classes">
- <java
classname="org.jboss.remoting.samples.http.SimpleServer">
+ <java classname="org.jboss.remoting.samples.http.SimpleServer"
fork="yes">
<classpath>
<pathelement location="${examples.root}"/>
<path refid="library.classpath"/>
@@ -78,7 +78,7 @@
</target>
<target name="run-callback-client"
depends="compile-sample-classes">
- <java
classname="org.jboss.remoting.samples.callback.CallbackClient">
+ <java
classname="org.jboss.remoting.samples.callback.CallbackClient"
fork="yes">
<classpath>
<pathelement location="${examples.root}"/>
<path refid="library.classpath"/>
@@ -87,7 +87,7 @@
</target>
<target name="run-callback-server"
depends="compile-sample-classes">
- <java
classname="org.jboss.remoting.samples.callback.CallbackServer">
+ <java
classname="org.jboss.remoting.samples.callback.CallbackServer"
fork="yes">
<classpath>
<pathelement location="${examples.root}"/>
<path refid="library.classpath"/>
@@ -96,7 +96,7 @@
</target>
<target name="run-detector-client"
depends="compile-sample-classes">
- <java
classname="org.jboss.remoting.samples.detection.multicast.SimpleDetectorClient">
+ <java
classname="org.jboss.remoting.samples.detection.multicast.SimpleDetectorClient"
fork="yes">
<classpath>
<pathelement location="${examples.root}"/>
<path refid="library.classpath"/>
@@ -105,7 +105,7 @@
</target>
<target name="run-detector-server"
depends="compile-sample-classes">
- <java
classname="org.jboss.remoting.samples.detection.multicast.SimpleDetectorServer">
+ <java
classname="org.jboss.remoting.samples.detection.multicast.SimpleDetectorServer"
fork="yes">
<classpath>
<pathelement location="${examples.root}"/>
<path refid="library.classpath"/>
@@ -114,7 +114,7 @@
</target>
<target name="run-oneway-client"
depends="compile-sample-classes">
- <java
classname="org.jboss.remoting.samples.oneway.OnewayClient">
+ <java
classname="org.jboss.remoting.samples.oneway.OnewayClient"
fork="yes">
<classpath>
<pathelement location="${examples.root}"/>
<path refid="library.classpath"/>
@@ -123,7 +123,7 @@
</target>
<target name="run-oneway-server"
depends="compile-sample-classes">
- <java
classname="org.jboss.remoting.samples.oneway.OnewayServer">
+ <java
classname="org.jboss.remoting.samples.oneway.OnewayServer"
fork="yes">
<classpath>
<pathelement location="${examples.root}"/>
<path refid="library.classpath"/>
@@ -132,7 +132,7 @@
</target>
<target name="run-stream-client"
depends="compile-sample-classes">
- <java
classname="org.jboss.remoting.samples.stream.StreamingClient">
+ <java
classname="org.jboss.remoting.samples.stream.StreamingClient"
fork="yes">
<classpath>
<pathelement location="${examples.root}"/>
<path refid="library.classpath"/>
@@ -141,7 +141,7 @@
</target>
<target name="run-stream-server"
depends="compile-sample-classes">
- <java
classname="org.jboss.remoting.samples.stream.StreamingServer">
+ <java
classname="org.jboss.remoting.samples.stream.StreamingServer"
fork="yes">
<classpath>
<pathelement location="${examples.root}"/>
<path refid="library.classpath"/>
@@ -150,7 +150,7 @@
</target>
<target name="run-transporter-simple-client"
depends="compile-sample-classes">
- <java
classname="org.jboss.remoting.samples.transporter.simple.Client">
+ <java
classname="org.jboss.remoting.samples.transporter.simple.Client"
fork="yes">
<classpath>
<pathelement location="${examples.root}"/>
<path refid="library.classpath"/>
@@ -159,7 +159,7 @@
</target>
<target name="run-transporter-simple-server"
depends="compile-sample-classes">
- <java
classname="org.jboss.remoting.samples.transporter.simple.Server">
+ <java
classname="org.jboss.remoting.samples.transporter.simple.Server"
fork="yes">
<classpath>
<pathelement location="${examples.root}"/>
<path refid="library.classpath"/>
@@ -168,7 +168,7 @@
</target>
<target name="run-transporter-basic-client"
depends="compile-sample-classes">
- <java
classname="org.jboss.remoting.samples.transporter.basic.client.Client">
+ <java
classname="org.jboss.remoting.samples.transporter.basic.client.Client"
fork="yes">
<classpath>
<pathelement location="${examples.root}"/>
<path refid="library.classpath"/>
@@ -177,7 +177,7 @@
</target>
<target name="run-transporter-basic-server"
depends="compile-sample-classes">
- <java
classname="org.jboss.remoting.samples.transporter.basic.server.Server">
+ <java
classname="org.jboss.remoting.samples.transporter.basic.server.Server"
fork="yes">
<classpath>
<pathelement location="${examples.root}"/>
<path refid="library.classpath"/>
@@ -186,7 +186,7 @@
</target>
<target name="run-transporter-multiple-client"
depends="compile-sample-classes">
- <java
classname="org.jboss.remoting.samples.transporter.multiple.client.Client">
+ <java
classname="org.jboss.remoting.samples.transporter.multiple.client.Client"
fork="yes">
<classpath>
<pathelement location="${examples.root}"/>
<path refid="library.classpath"/>
@@ -195,7 +195,7 @@
</target>
<target name="run-transporter-multiple-server"
depends="compile-sample-classes">
- <java
classname="org.jboss.remoting.samples.transporter.multiple.server.Server">
+ <java
classname="org.jboss.remoting.samples.transporter.multiple.server.Server"
fork="yes">
<classpath>
<pathelement location="${examples.root}"/>
<path refid="library.classpath"/>
@@ -204,7 +204,7 @@
</target>
<target name="run-transporter-proxy-client"
depends="compile-sample-classes">
- <java
classname="org.jboss.remoting.samples.transporter.proxy.client.Client">
+ <java
classname="org.jboss.remoting.samples.transporter.proxy.client.Client"
fork="yes">
<classpath>
<pathelement location="${examples.root}"/>
<path refid="library.classpath"/>
@@ -213,7 +213,7 @@
</target>
<target name="run-transporter-proxy-server"
depends="compile-sample-classes">
- <java
classname="org.jboss.remoting.samples.transporter.proxy.server.Server">
+ <java
classname="org.jboss.remoting.samples.transporter.proxy.server.Server"
fork="yes">
<classpath>
<pathelement location="${examples.root}"/>
<path refid="library.classpath"/>
@@ -222,7 +222,7 @@
</target>
<target name="run-transporter-clustered-client"
depends="compile-sample-classes">
- <java
classname="org.jboss.remoting.samples.transporter.clustered.client.Client">
+ <java
classname="org.jboss.remoting.samples.transporter.clustered.client.Client"
fork="yes">
<classpath>
<pathelement location="${examples.root}"/>
<path refid="library.classpath"/>
@@ -231,7 +231,7 @@
</target>
<target name="run-transporter-clustered-socket-server"
depends="compile-sample-classes">
- <java
classname="org.jboss.remoting.samples.transporter.clustered.server.SocketServer">
+ <java
classname="org.jboss.remoting.samples.transporter.clustered.server.SocketServer"
fork="yes">
<classpath>
<pathelement location="${examples.root}"/>
<path refid="library.classpath"/>
@@ -240,7 +240,7 @@
</target>
<target name="run-transporter-clustered-rmi-server"
depends="compile-sample-classes">
- <java
classname="org.jboss.remoting.samples.transporter.clustered.server.RMIServer">
+ <java
classname="org.jboss.remoting.samples.transporter.clustered.server.RMIServer"
fork="yes">
<classpath>
<pathelement location="${examples.root}"/>
<path refid="library.classpath"/>
@@ -249,7 +249,7 @@
</target>
<target name="run-transporter-clustered-http-server"
depends="compile-sample-classes">
- <java
classname="org.jboss.remoting.samples.transporter.clustered.server.HTTPServer">
+ <java
classname="org.jboss.remoting.samples.transporter.clustered.server.HTTPServer"
fork="yes">
<classpath>
<pathelement location="${examples.root}"/>
<path refid="library.classpath"/>
@@ -258,7 +258,7 @@
</target>
<target name="run-bisocket-client"
depends="compile-sample-classes">
- <java
classname="org.jboss.remoting.samples.bisocket.BisocketSampleClient">
+ <java
classname="org.jboss.remoting.samples.bisocket.BisocketSampleClient"
fork="yes">
<classpath>
<pathelement location="${examples.root}"/>
<path refid="library.classpath"/>
@@ -267,7 +267,7 @@
</target>
<target name="run-bisocket-server"
depends="compile-sample-classes">
- <java
classname="org.jboss.remoting.samples.bisocket.BisocketSampleServer">
+ <java
classname="org.jboss.remoting.samples.bisocket.BisocketSampleServer"
fork="yes">
<classpath>
<pathelement location="${examples.root}"/>
<path refid="library.classpath"/>
@@ -292,7 +292,7 @@
</target>
<target name="run-actual-serialization-client"
depends="compile-sample-classes" if="isJDK5">
- <java
classname="org.jboss.remoting.samples.serialization.SerializationClient">
+ <java
classname="org.jboss.remoting.samples.serialization.SerializationClient"
fork="yes">
<classpath>
<pathelement location="${examples.root}"/>
<path refid="library.classpath"/>
@@ -301,7 +301,7 @@
</target>
<target name="run-actual-serialization-server"
depends="compile-sample-classes" if="isJDK5">
- <java
classname="org.jboss.remoting.samples.serialization.SerializationServer">
+ <java
classname="org.jboss.remoting.samples.serialization.SerializationServer"
fork="yes">
<classpath>
<pathelement location="${examples.root}"/>
<path refid="library.classpath"/>
@@ -314,7 +314,7 @@
<target name="run-transporter-serialization-server"
depends="get-jvm,run-actual-transporter-serialization-server,jdk-message"/>
<target name="run-actual-transporter-serialization-client"
depends="compile-sample-classes" if="isJDK5">
- <java
classname="org.jboss.remoting.samples.transporter.serialization.client.Client">
+ <java
classname="org.jboss.remoting.samples.transporter.serialization.client.Client"
fork="yes">
<classpath>
<pathelement location="${examples.root}"/>
<path refid="library.classpath"/>
@@ -323,7 +323,7 @@
</target>
<target name="run-actual-transporter-serialization-server"
depends="compile-sample-classes" if="isJDK5">
- <java
classname="org.jboss.remoting.samples.transporter.serialization.server.Server">
+ <java
classname="org.jboss.remoting.samples.transporter.serialization.server.Server"
fork="yes">
<classpath>
<pathelement location="${examples.root}"/>
<path refid="library.classpath"/>
@@ -336,7 +336,7 @@
<target name="run-transporter-complex-server"
depends="get-jvm,run-actual-transporter-complex-server,jdk-message"/>
<target name="run-actual-transporter-complex-client"
depends="compile-sample-classes" if="isJDK5">
- <java
classname="org.jboss.remoting.samples.transporter.complex.client.Client">
+ <java
classname="org.jboss.remoting.samples.transporter.complex.client.Client"
fork="yes">
<classpath>
<pathelement location="${examples.root}"/>
<path refid="library.classpath"/>
@@ -345,7 +345,7 @@
</target>
<target name="run-actual-transporter-complex-server"
depends="compile-sample-classes" if="isJDK5">
- <java
classname="org.jboss.remoting.samples.transporter.complex.server.Server">
+ <java
classname="org.jboss.remoting.samples.transporter.complex.server.Server"
fork="yes">
<classpath>
<pathelement location="${examples.root}"/>
<path refid="library.classpath"/>
@@ -356,7 +356,7 @@
<target name="run-multiplex-server"
depends="compile-sample-classes">
- <java
classname="org.jboss.remoting.samples.multiplex.invoker.MultiplexInvokerServer">
+ <java
classname="org.jboss.remoting.samples.multiplex.invoker.MultiplexInvokerServer"
fork="yes">
<classpath>
<pathelement location="${examples.root}"/>
<path refid="library.classpath"/>
@@ -365,7 +365,7 @@
</target>
<target name="run-Client2Server1"
depends="compile-sample-classes">
- <java
classname="org.jboss.remoting.samples.multiplex.invoker.Client2Server1">
+ <java
classname="org.jboss.remoting.samples.multiplex.invoker.Client2Server1"
fork="yes">
<classpath>
<pathelement location="${examples.root}"/>
<path refid="library.classpath"/>
@@ -374,7 +374,7 @@
</target>
<target name="run-Client2Server2"
depends="compile-sample-classes">
- <java
classname="org.jboss.remoting.samples.multiplex.invoker.Client2Server2">
+ <java
classname="org.jboss.remoting.samples.multiplex.invoker.Client2Server2"
fork="yes">
<classpath>
<pathelement location="${examples.root}"/>
<path refid="library.classpath"/>
@@ -383,7 +383,7 @@
</target>
<target name="run-Client3Server1"
depends="compile-sample-classes">
- <java
classname="org.jboss.remoting.samples.multiplex.invoker.Client3Server1">
+ <java
classname="org.jboss.remoting.samples.multiplex.invoker.Client3Server1"
fork="yes">
<classpath>
<pathelement location="${examples.root}"/>
<path refid="library.classpath"/>
@@ -392,7 +392,7 @@
</target>
<target name="run-Server2Client1"
depends="compile-sample-classes">
- <java
classname="org.jboss.remoting.samples.multiplex.invoker.Server2Client1">
+ <java
classname="org.jboss.remoting.samples.multiplex.invoker.Server2Client1"
fork="yes">
<classpath>
<pathelement location="${examples.root}"/>
<path refid="library.classpath"/>
@@ -401,7 +401,7 @@
</target>
<target name="run-Server2Client2"
depends="compile-sample-classes">
- <java
classname="org.jboss.remoting.samples.multiplex.invoker.Server2Client2">
+ <java
classname="org.jboss.remoting.samples.multiplex.invoker.Server2Client2"
fork="yes">
<classpath>
<pathelement location="${examples.root}"/>
<path refid="library.classpath"/>
@@ -410,7 +410,7 @@
</target>
<target name="run-Server3Client1"
depends="compile-sample-classes">
- <java
classname="org.jboss.remoting.samples.multiplex.invoker.Server3Client1">
+ <java
classname="org.jboss.remoting.samples.multiplex.invoker.Server3Client1"
fork="yes">
<classpath>
<pathelement location="${examples.root}"/>
<path refid="library.classpath"/>