[overlord-commits] Overlord SVN: r627 - cdl/trunk/samples/jbossesb/trailblazer.

overlord-commits at lists.jboss.org overlord-commits at lists.jboss.org
Fri May 1 07:13:34 EDT 2009


Author: objectiser
Date: 2009-05-01 07:13:34 -0400 (Fri, 01 May 2009)
New Revision: 627

Modified:
   cdl/trunk/samples/jbossesb/trailblazer/build.xml
Log:
added 1.5 target to javac tasks in trailblazer, as failed when running under 1.6 on soa-p

Modified: cdl/trunk/samples/jbossesb/trailblazer/build.xml
===================================================================
--- cdl/trunk/samples/jbossesb/trailblazer/build.xml	2009-05-01 09:53:23 UTC (rev 626)
+++ cdl/trunk/samples/jbossesb/trailblazer/build.xml	2009-05-01 11:13:34 UTC (rev 627)
@@ -150,7 +150,8 @@
 		description="Compiling Trailblazer ESB classes">
 		<javac
 		        destdir="${classes.dir}"
-		        classpathref="esb.samples.trailblazer.esb.classpath"
+		        classpathref="esb.samples.trailblazer.esb.classpath"
+			target="1.5"
 			debug="true">
 			<src path="${esb.src.dir}"/>
 		</javac>
@@ -161,7 +162,9 @@
 		depends="trailblazer.prepare"
 		description="Compiling Trailblazer client classes">
 		<javac	destdir="${esb.samples.trailblazer.client.classes.dir}"
-            		classpathref="esb.samples.trailblazer.esb.classpath.client" debug="true">
+            		classpathref="esb.samples.trailblazer.esb.classpath.client"
+			target="1.5"
+			debug="true">
 	    		<src path="${esb.samples.trailblazer.client.src.dir}"/>
 		</javac>
 	</target>




More information about the overlord-commits mailing list