You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by fu...@apache.org on 2006/04/11 02:10:19 UTC

svn commit: r393123 - in /db/derby/code/trunk/java/demo: build.xml toursdb/build.xml

Author: fuzzylogic
Date: Mon Apr 10 17:10:18 2006
New Revision: 393123

URL: http://svn.apache.org/viewcvs?rev=393123&view=rev
Log:
Fix dependencies of demo build targets so that insertMaps gets built properly
on an 'ant clean ; ant all'

Modified:
    db/derby/code/trunk/java/demo/build.xml
    db/derby/code/trunk/java/demo/toursdb/build.xml

Modified: db/derby/code/trunk/java/demo/build.xml
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/demo/build.xml?rev=393123&r1=393122&r2=393123&view=diff
==============================================================================
--- db/derby/code/trunk/java/demo/build.xml (original)
+++ db/derby/code/trunk/java/demo/build.xml Mon Apr 10 17:10:18 2006
@@ -70,6 +70,7 @@
         <pathelement path="${java13compile.classpath};${jcc};${jta1_2}"/>
       </classpath>
     </javac>
+    <ant target="compile" dir="toursdb"/>
   </target>
 
   <target name="checktoursdb">

Modified: db/derby/code/trunk/java/demo/toursdb/build.xml
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/demo/toursdb/build.xml?rev=393123&r1=393122&r2=393123&view=diff
==============================================================================
--- db/derby/code/trunk/java/demo/toursdb/build.xml (original)
+++ db/derby/code/trunk/java/demo/toursdb/build.xml Mon Apr 10 17:10:18 2006
@@ -21,7 +21,6 @@
   <target name="toursdb" depends="compile,buildschema,loadtables,jarup,copyfiles"/>
 
   <target name="compile">
-    <echo message="Begin building toursdb"/>
     <javac
       bootclasspath="${empty}"
       debug="${debug}"
@@ -40,6 +39,7 @@
   </target>
 
   <target name="buildschema">
+    <echo message="Begin building toursdb"/>
     <java classname="org.apache.derby.tools.ij"
           output="toursdb.out"
           failonerror="true"