You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2008/04/11 19:08:39 UTC

svn commit: r647226 - /activemq/camel/trunk/examples/common_build.xml

Author: davsclaus
Date: Fri Apr 11 10:08:36 2008
New Revision: 647226

URL: http://svn.apache.org/viewvc?rev=647226&view=rev
Log:
CAMEL-46 removed warning when using ANT 1.7

Modified:
    activemq/camel/trunk/examples/common_build.xml

Modified: activemq/camel/trunk/examples/common_build.xml
URL: http://svn.apache.org/viewvc/activemq/camel/trunk/examples/common_build.xml?rev=647226&r1=647225&r2=647226&view=diff
==============================================================================
--- activemq/camel/trunk/examples/common_build.xml (original)
+++ activemq/camel/trunk/examples/common_build.xml Fri Apr 11 10:08:36 2008
@@ -139,15 +139,15 @@
     <attribute name="mainClass" default="org.apache.camel.spring.Main"/>
     <element name="arguments" optional="true"/>
     <sequential>
-      <property name="sampleclasspath" refid="sample.run.classpath"/>
-      <!--
-      <echo message="running with classpath: ${sampleclasspath}"/>
-      -->
       <path id="sample.run.classpath">
         <pathelement location="${build.classes.dir}"/>
         <path refid="sample.build.classpath"/>
         <path refid="log4j.classpath"/>
       </path>
+      <!--
+      <property name="sampleclasspath" refid="sample.run.classpath"/>
+      <echo message="running with classpath: ${sampleclasspath}"/>
+      -->
 
       <java classname="@{mainClass}"
         fork="true"