[Mulgara-svn] r198 - in trunk/src/jar: ant-task client-drools client-jrdf config connection connector content-mbox content-mp3 content-n3 content-rdfxml content-rio demo-mp3 descriptor driver dtd itql jrdf query rdql resolver-file resolver-gis resolver-http resolver-jar resolver-lucene resolver-memory resolver-spi resolver-store resolver-test resolver-url resolver-view resolver-xsd rules server-beep server-http server-local server-rmi sofa sparql-protocol store-nodepool-memory store-nodepool-xa store-stringpool-memory store-stringpool-xa tag tuples tuples-hybrid util util-xa
ronald at mulgara.org
ronald at mulgara.org
Thu Mar 1 06:57:28 UTC 2007
Author: ronald
Date: 2007-03-01 00:57:27 -0600 (Thu, 01 Mar 2007)
New Revision: 198
Modified:
trunk/src/jar/ant-task/build.xml
trunk/src/jar/client-drools/build.xml
trunk/src/jar/client-jrdf/build.xml
trunk/src/jar/config/build.xml
trunk/src/jar/connection/build.xml
trunk/src/jar/connector/build.xml
trunk/src/jar/content-mbox/build.xml
trunk/src/jar/content-mp3/build.xml
trunk/src/jar/content-n3/build.xml
trunk/src/jar/content-rdfxml/build.xml
trunk/src/jar/content-rio/build.xml
trunk/src/jar/demo-mp3/build.xml
trunk/src/jar/descriptor/build.xml
trunk/src/jar/driver/build.xml
trunk/src/jar/dtd/build.xml
trunk/src/jar/itql/build.xml
trunk/src/jar/jrdf/build.xml
trunk/src/jar/query/build.xml
trunk/src/jar/rdql/build.xml
trunk/src/jar/resolver-file/build.xml
trunk/src/jar/resolver-gis/build.xml
trunk/src/jar/resolver-http/build.xml
trunk/src/jar/resolver-jar/build.xml
trunk/src/jar/resolver-lucene/build.xml
trunk/src/jar/resolver-memory/build.xml
trunk/src/jar/resolver-spi/build.xml
trunk/src/jar/resolver-store/build.xml
trunk/src/jar/resolver-test/build.xml
trunk/src/jar/resolver-url/build.xml
trunk/src/jar/resolver-view/build.xml
trunk/src/jar/resolver-xsd/build.xml
trunk/src/jar/rules/build.xml
trunk/src/jar/server-beep/build.xml
trunk/src/jar/server-http/build.xml
trunk/src/jar/server-local/build.xml
trunk/src/jar/server-rmi/build.xml
trunk/src/jar/sofa/build.xml
trunk/src/jar/sparql-protocol/build.xml
trunk/src/jar/store-nodepool-memory/build.xml
trunk/src/jar/store-nodepool-xa/build.xml
trunk/src/jar/store-stringpool-memory/build.xml
trunk/src/jar/store-stringpool-xa/build.xml
trunk/src/jar/tag/build.xml
trunk/src/jar/tuples-hybrid/build.xml
trunk/src/jar/tuples/build.xml
trunk/src/jar/util-xa/build.xml
trunk/src/jar/util/build.xml
Log:
Fix jar dependency calculation by moving <foo>-jar-uptodate to end of
dependency list. The entries for the jar must be built first before the
jar dependency check is performed as otherwise that check is against
files which may get rebuilt by the next dependency in the list.
Modified: trunk/src/jar/ant-task/build.xml
===================================================================
--- trunk/src/jar/ant-task/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/ant-task/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -67,7 +67,7 @@
</target>
<target name="ant-task-jar"
- depends="-ant-task-jar-uptodate, ant-task-compile"
+ depends="ant-task-compile, -ant-task-jar-uptodate"
unless="ant-task.jar.uptodate"
description="Creates the ant-task's jar/s">
Modified: trunk/src/jar/client-drools/build.xml
===================================================================
--- trunk/src/jar/client-drools/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/client-drools/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -79,7 +79,7 @@
</target>
<target name="client-drools-jar"
- depends="-client-drools-jar-uptodate, client-drools-compile"
+ depends="client-drools-compile, -client-drools-jar-uptodate"
unless="client-drools.jar.uptodate"
description="Creates the client-drools's jar/s">
Modified: trunk/src/jar/client-jrdf/build.xml
===================================================================
--- trunk/src/jar/client-jrdf/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/client-jrdf/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -74,7 +74,7 @@
</target>
<target name="client-jrdf-jar"
- depends="-client-jrdf-jar-uptodate, client-jrdf-compile"
+ depends="client-jrdf-compile, -client-jrdf-jar-uptodate"
unless="client-jrdf.jar.uptodate"
description="Creates the client-jrdf's jar/s">
Modified: trunk/src/jar/config/build.xml
===================================================================
--- trunk/src/jar/config/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/config/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -57,7 +57,7 @@
</javac>
</target>
- <target name="config-jar" depends="config-jar-uptodate, config-compile"
+ <target name="config-jar" depends="config-compile, config-jar-uptodate"
description="Builds the base Mulgara configuration JAR"
unless="config.jar-uptodate">
Modified: trunk/src/jar/connection/build.xml
===================================================================
--- trunk/src/jar/connection/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/connection/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -49,7 +49,7 @@
</javac>
</target>
- <target name="connection-jar" depends="-connection-jar-uptodate, connection-compile" unless="connection.jar.uptodate"
+ <target name="connection-jar" depends="connection-compile, -connection-jar-uptodate" unless="connection.jar.uptodate"
description="Creates the connection.jar">
<jar jarfile="${connection.dist.dir}/${connection.base.jar}">
<fileset dir="${connection.obj.dir}/classes"/>
Modified: trunk/src/jar/connector/build.xml
===================================================================
--- trunk/src/jar/connector/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/connector/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -70,7 +70,7 @@
</target>
<target name="connector-jar"
- depends="-connector-jar-uptodate, connector-compile"
+ depends="connector-compile, -connector-jar-uptodate"
unless="connector.jar.uptodate"
description="Creates the connector's jar/s">
Modified: trunk/src/jar/content-mbox/build.xml
===================================================================
--- trunk/src/jar/content-mbox/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/content-mbox/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -94,7 +94,7 @@
</target>
<target name="content-mbox-jar"
- depends="-content-mbox-jar-uptodate, content-mbox-compile"
+ depends="content-mbox-compile, -content-mbox-jar-uptodate"
unless="content-mbox.jar.uptodate"
description="Creates the content-mbox's jar/s">
Modified: trunk/src/jar/content-mp3/build.xml
===================================================================
--- trunk/src/jar/content-mp3/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/content-mp3/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -94,7 +94,7 @@
</target>
<target name="content-mp3-jar"
- depends="-content-mp3-jar-uptodate, content-mp3-compile"
+ depends="content-mp3-compile, -content-mp3-jar-uptodate"
unless="content-mp3.jar.uptodate"
description="Creates the content-mp3's jar/s">
Modified: trunk/src/jar/content-n3/build.xml
===================================================================
--- trunk/src/jar/content-n3/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/content-n3/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -79,7 +79,7 @@
</target>
<target name="content-n3-jar"
- depends="-content-n3-jar-uptodate, content-n3-compile"
+ depends="content-n3-compile, -content-n3-jar-uptodate"
unless="content-n3.jar.uptodate"
description="Builds the RDF/XML content handler JAR">
Modified: trunk/src/jar/content-rdfxml/build.xml
===================================================================
--- trunk/src/jar/content-rdfxml/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/content-rdfxml/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -83,7 +83,7 @@
</target>
<target name="content-rdfxml-jar"
- depends="-content-rdfxml-jar-uptodate, content-rdfxml-compile"
+ depends="content-rdfxml-compile, -content-rdfxml-jar-uptodate"
unless="content-rdfxml.jar.uptodate"
description="Builds the RDF/XML content handler JAR">
Modified: trunk/src/jar/content-rio/build.xml
===================================================================
--- trunk/src/jar/content-rio/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/content-rio/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -83,7 +83,7 @@
</target>
<target name="content-rio-jar"
- depends="-content-rio-jar-uptodate, content-rio-compile"
+ depends="content-rio-compile, -content-rio-jar-uptodate"
unless="content-rio.jar.uptodate"
description="Builds the RDF/XML content handler JAR">
Modified: trunk/src/jar/demo-mp3/build.xml
===================================================================
--- trunk/src/jar/demo-mp3/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/demo-mp3/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -59,7 +59,7 @@
</target>
<target name="demo-mp3-jar"
- depends="-demo-mp3-jar-uptodate, demo-mp3-compile"
+ depends="demo-mp3-compile, -demo-mp3-jar-uptodate"
unless="demo-mp3.jar.uptodate"
description="Creates the demo-mp3's jar/s">
<jar jarfile="${demo-mp3.dist.dir}/${demo-mp3.jar}">
Modified: trunk/src/jar/descriptor/build.xml
===================================================================
--- trunk/src/jar/descriptor/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/descriptor/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -129,7 +129,7 @@
</target>
<target name="descriptor-jar"
- depends="-descriptor-jar-uptodate, descriptor-compile"
+ depends="descriptor-compile, -descriptor-jar-uptodate"
unless="descriptor.jar.uptodate"
description="Creates the descriptor's jar/s">
Modified: trunk/src/jar/driver/build.xml
===================================================================
--- trunk/src/jar/driver/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/driver/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -75,7 +75,7 @@
</target>
<target name="driver-jar"
- depends="-driver-jar-uptodate, driver-compile"
+ depends="driver-compile, -driver-jar-uptodate"
unless="driver.jar.uptodate"
description="Creates the driver's jar/s">
Modified: trunk/src/jar/dtd/build.xml
===================================================================
--- trunk/src/jar/dtd/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/dtd/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -65,7 +65,7 @@
</target>
<target name="dtd-jar"
- depends="-dtd-jar-uptodate, dtd-compile"
+ depends="dtd-compile, -dtd-jar-uptodate"
unless="dtd.jar.uptodate"
description="Creates the dtd's jar/s">
Modified: trunk/src/jar/itql/build.xml
===================================================================
--- trunk/src/jar/itql/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/itql/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -92,7 +92,7 @@
</manifest>
</target>
- <target name="itql-jar" depends="itql-compile, -itql-jar-uptodate, -itql-create-manifest" unless="itql.jar.uptodate" description="Creates the itql's jar/s">
+ <target name="itql-jar" depends="itql-compile, -itql-create-manifest, -itql-jar-uptodate" unless="itql.jar.uptodate" description="Creates the itql's jar/s">
<jar jarfile="${itql.dist.dir}/${itql.jar}"
manifest="${obj.dir}/META-INF/MANIFEST_ITQL_BASE.MF">
<fileset dir="${itql.obj.dir}/classes" excludes="**/*.java"/>
Modified: trunk/src/jar/jrdf/build.xml
===================================================================
--- trunk/src/jar/jrdf/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/jrdf/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -75,7 +75,7 @@
</target>
<target name="jrdf-jar"
- depends="-jrdf-jar-uptodate, jrdf-compile"
+ depends="jrdf-compile, -jrdf-jar-uptodate"
description="Creates the jrdf's jar/s"
unless="jrdf.jar.uptodate">
Modified: trunk/src/jar/query/build.xml
===================================================================
--- trunk/src/jar/query/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/query/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -84,7 +84,7 @@
</target>
<target name="query-jar"
- depends="-query-jar-uptodate, query-compile, config-database"
+ depends="query-compile, config-database, -query-jar-uptodate"
unless="query.jar.uptodate"
description="Creates the query's jar/s">
Modified: trunk/src/jar/rdql/build.xml
===================================================================
--- trunk/src/jar/rdql/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/rdql/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -116,7 +116,7 @@
</target>
<target name="rdql-jar"
- depends="-rdql-jar-uptodate, rdql-compile"
+ depends="rdql-compile, -rdql-jar-uptodate"
unless="rdql.jar.uptodate"
description="Creates the rdql's jar/s">
Modified: trunk/src/jar/resolver-file/build.xml
===================================================================
--- trunk/src/jar/resolver-file/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/resolver-file/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -70,7 +70,7 @@
</target>
<target name="resolver-file-jar"
- depends="-resolver-file-jar-uptodate, resolver-file-compile"
+ depends="resolver-file-compile, -resolver-file-jar-uptodate"
unless="resolver-file.jar.uptodate"
description="Builds the File Resolver JAR">
Modified: trunk/src/jar/resolver-gis/build.xml
===================================================================
--- trunk/src/jar/resolver-gis/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/resolver-gis/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -64,7 +64,7 @@
</target>
<target name="resolver-gis-jar"
- depends="-resolver-gis-jar-uptodate, resolver-gis-compile"
+ depends="resolver-gis-compile, -resolver-gis-jar-uptodate"
unless="resolver-gis.jar.uptodate"
description="Creates the resolver-gis's jar/s">
<jar jarfile="${resolver-gis.dist.dir}/${resolver-gis.jar}">
Modified: trunk/src/jar/resolver-http/build.xml
===================================================================
--- trunk/src/jar/resolver-http/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/resolver-http/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -70,7 +70,7 @@
</target>
<target name="resolver-http-jar"
- depends="-resolver-http-jar-uptodate, resolver-http-compile"
+ depends="resolver-http-compile, -resolver-http-jar-uptodate"
unless="resolver-http.jar.uptodate"
description="Builds the File Resolver JAR">
Modified: trunk/src/jar/resolver-jar/build.xml
===================================================================
--- trunk/src/jar/resolver-jar/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/resolver-jar/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -70,7 +70,7 @@
</target>
<target name="resolver-jar-jar"
- depends="-resolver-jar-jar-uptodate, resolver-jar-compile"
+ depends="resolver-jar-compile, -resolver-jar-jar-uptodate"
unless="resolver-jar.jar.uptodate"
description="Builds the URL Resolver JAR">
Modified: trunk/src/jar/resolver-lucene/build.xml
===================================================================
--- trunk/src/jar/resolver-lucene/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/resolver-lucene/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -72,7 +72,7 @@
</target>
<target name="resolver-lucene-jar"
- depends="-resolver-lucene-jar-uptodate, resolver-lucene-compile"
+ depends="resolver-lucene-compile, -resolver-lucene-jar-uptodate"
unless="resolver-lucene.jar.uptodate"
description="Builds the Lucene Resolver JAR">
Modified: trunk/src/jar/resolver-memory/build.xml
===================================================================
--- trunk/src/jar/resolver-memory/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/resolver-memory/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -69,7 +69,7 @@
</target>
<target name="resolver-memory-jar"
- depends="-resolver-memory-jar-uptodate, resolver-memory-compile"
+ depends="resolver-memory-compile, -resolver-memory-jar-uptodate"
unless="resolver-memory.jar.uptodate"
description="Builds the URL Resolver JAR">
Modified: trunk/src/jar/resolver-spi/build.xml
===================================================================
--- trunk/src/jar/resolver-spi/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/resolver-spi/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -70,7 +70,7 @@
</target>
<target name="resolver-spi-jar"
- depends="-resolver-spi-jar-uptodate, resolver-spi-compile"
+ depends="resolver-spi-compile, -resolver-spi-jar-uptodate"
unless="resolver-spi.jar.uptodate"
description="Builds the Resolver SPI JAR">
Modified: trunk/src/jar/resolver-store/build.xml
===================================================================
--- trunk/src/jar/resolver-store/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/resolver-store/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -71,7 +71,7 @@
</target>
<target name="resolver-store-jar"
- depends="-resolver-store-jar-uptodate, resolver-store-compile"
+ depends="resolver-store-compile, -resolver-store-jar-uptodate"
unless="resolver-store.jar.uptodate"
description="Builds the statement store resolver JAR">
Modified: trunk/src/jar/resolver-test/build.xml
===================================================================
--- trunk/src/jar/resolver-test/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/resolver-test/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -87,7 +87,7 @@
</target>
<target name="resolver-test-jar"
- depends="-resolver-test-jar-uptodate, resolver-test-compile"
+ depends="resolver-test-compile, -resolver-test-jar-uptodate"
unless="resolver-test.jar.uptodate"
description="Creates the resolver-test's jar/s">
Modified: trunk/src/jar/resolver-url/build.xml
===================================================================
--- trunk/src/jar/resolver-url/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/resolver-url/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -69,7 +69,7 @@
</target>
<target name="resolver-url-jar"
- depends="-resolver-url-jar-uptodate, resolver-url-compile"
+ depends="resolver-url-compile, -resolver-url-jar-uptodate"
unless="resolver-url.jar.uptodate"
description="Builds the URL Resolver JAR">
Modified: trunk/src/jar/resolver-view/build.xml
===================================================================
--- trunk/src/jar/resolver-view/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/resolver-view/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -83,7 +83,7 @@
</target>
<target name="resolver-view-jar"
- depends="-resolver-view-jar-uptodate, resolver-view-compile"
+ depends="resolver-view-compile, -resolver-view-jar-uptodate"
unless="resolver-view.jar.uptodate"
description="Builds the View Resolver JAR">
Modified: trunk/src/jar/resolver-xsd/build.xml
===================================================================
--- trunk/src/jar/resolver-xsd/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/resolver-xsd/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -72,7 +72,7 @@
</target>
<target name="resolver-xsd-jar"
- depends="-resolver-xsd-jar-uptodate, resolver-xsd-compile"
+ depends="resolver-xsd-compile, -resolver-xsd-jar-uptodate"
unless="resolver-xsd.jar.uptodate"
description="Creates the resolver-xsd's jar/s">
Modified: trunk/src/jar/rules/build.xml
===================================================================
--- trunk/src/jar/rules/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/rules/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -88,7 +88,7 @@
</target>
<target name="rules-jar"
- depends="-rules-jar-uptodate, rules-compile, config-database"
+ depends="rules-compile, config-database, -rules-jar-uptodate"
unless="rules.jar.uptodate"
description="Creates the rules's jar/s">
Modified: trunk/src/jar/server-beep/build.xml
===================================================================
--- trunk/src/jar/server-beep/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/server-beep/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -75,7 +75,7 @@
</target>
<target name="server-beep-jar"
- depends="-server-beep-jar-uptodate, server-beep-compile"
+ depends="server-beep-compile, -server-beep-jar-uptodate"
unless="server-beep.jar.uptodate"
description="Creates the server-beep's jar/s">
Modified: trunk/src/jar/server-http/build.xml
===================================================================
--- trunk/src/jar/server-http/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/server-http/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -73,7 +73,7 @@
</target>
<target name="server-http-jar"
- depends="-server-http-jar-uptodate, server-http-compile"
+ depends="server-http-compile, -server-http-jar-uptodate"
unless="server-http.jar.uptodate"
description="Creates the server-http's jar/s">
Modified: trunk/src/jar/server-local/build.xml
===================================================================
--- trunk/src/jar/server-local/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/server-local/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -73,7 +73,7 @@
</target>
<target name="server-local-jar"
- depends="-server-local-jar-uptodate, server-local-compile"
+ depends="server-local-compile, -server-local-jar-uptodate"
unless="server-local.jar.uptodate"
description="Creates the server-local's jar/s">
Modified: trunk/src/jar/server-rmi/build.xml
===================================================================
--- trunk/src/jar/server-rmi/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/server-rmi/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -124,7 +124,7 @@
</target>
<target name="server-rmi-jar"
- depends="-server-rmi-jar-uptodate, server-rmi-compile"
+ depends="server-rmi-compile, -server-rmi-jar-uptodate"
unless="server-rmi.jar.uptodate"
description="Creates the server-rmi's jar/s">
Modified: trunk/src/jar/sofa/build.xml
===================================================================
--- trunk/src/jar/sofa/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/sofa/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -79,7 +79,7 @@
</target>
<target name="sofa-jar"
- depends="-sofa-jar-uptodate, sofa-compile"
+ depends="sofa-compile, -sofa-jar-uptodate"
unless="sofa.jar.uptodate"
description="Creates the sofa's jar/s">
Modified: trunk/src/jar/sparql-protocol/build.xml
===================================================================
--- trunk/src/jar/sparql-protocol/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/sparql-protocol/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -72,7 +72,7 @@
</target>
<target name="sparql-protocol-jar"
- depends="-sparql-protocol-jar-uptodate, sparql-protocol-compile"
+ depends="sparql-protocol-compile, -sparql-protocol-jar-uptodate"
unless="sparql-protocol.jar.uptodate"
description="Creates the sparql-protocol's jar/s">
Modified: trunk/src/jar/store-nodepool-memory/build.xml
===================================================================
--- trunk/src/jar/store-nodepool-memory/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/store-nodepool-memory/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -73,7 +73,7 @@
</target>
<target name="store-nodepool-memory-jar"
- depends="-store-nodepool-memory-jar-uptodate, store-nodepool-memory-compile"
+ depends="store-nodepool-memory-compile, -store-nodepool-memory-jar-uptodate"
unless="store-nodepool-memory.jar.uptodate"
description="Builds the memory-backed node pool JAR">
Modified: trunk/src/jar/store-nodepool-xa/build.xml
===================================================================
--- trunk/src/jar/store-nodepool-xa/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/store-nodepool-xa/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -75,7 +75,7 @@
</target>
<target name="store-nodepool-xa-jar"
- depends="-store-nodepool-xa-jar-uptodate, store-nodepool-xa-compile"
+ depends="store-nodepool-xa-compile, -store-nodepool-xa-jar-uptodate"
unless="store-nodepool-xa.jar.uptodate"
description="Builds the memory-backed node pool JAR">
Modified: trunk/src/jar/store-stringpool-memory/build.xml
===================================================================
--- trunk/src/jar/store-stringpool-memory/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/store-stringpool-memory/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -74,7 +74,7 @@
</target>
<target name="store-stringpool-memory-jar"
- depends="store-stringpool-memory-jar-uptodate, store-stringpool-memory-compile"
+ depends="store-stringpool-memory-compile, store-stringpool-memory-jar-uptodate"
unless="store-stringpool-memory.jar.uptodate"
description="Builds the memory-backed node pool JAR">
Modified: trunk/src/jar/store-stringpool-xa/build.xml
===================================================================
--- trunk/src/jar/store-stringpool-xa/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/store-stringpool-xa/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -72,7 +72,7 @@
</target>
<target name="store-stringpool-xa-jar"
- depends="-store-stringpool-xa-jar-uptodate, store-stringpool-xa-compile"
+ depends="store-stringpool-xa-compile, -store-stringpool-xa-jar-uptodate"
unless="store-stringpool-xa.jar.uptodate"
description="Builds the memory-backed node pool JAR">
Modified: trunk/src/jar/tag/build.xml
===================================================================
--- trunk/src/jar/tag/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/tag/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -68,7 +68,7 @@
</target>
<target name="tag-jar"
- depends="-tag-jar-uptodate, tag-compile"
+ depends="tag-compile, -tag-jar-uptodate"
unless="tag.jar.uptodate"
description="Creates the tag's jar/s">
Modified: trunk/src/jar/tuples/build.xml
===================================================================
--- trunk/src/jar/tuples/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/tuples/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -79,7 +79,7 @@
method, whose functionality should migrate into the Resolution
implementations. -->
<target name="tuples-jar"
- depends="-tuples-jar-uptodate, tuples-compile"
+ depends="tuples-compile, -tuples-jar-uptodate"
unless="tuples.jar.uptodate"
description="Creates the tuples' jar/s">
Modified: trunk/src/jar/tuples-hybrid/build.xml
===================================================================
--- trunk/src/jar/tuples-hybrid/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/tuples-hybrid/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -70,7 +70,7 @@
</target>
<target name="tuples-hybrid-jar"
- depends="-tuples-hybrid-jar-uptodate, tuples-hybrid-compile"
+ depends="tuples-hybrid-compile, -tuples-hybrid-jar-uptodate"
unless="tuples-hybrid.jar.uptodate"
description="Builds the hybrid tuples JAR">
Modified: trunk/src/jar/util/build.xml
===================================================================
--- trunk/src/jar/util/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/util/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -74,7 +74,7 @@
</target>
<target name="util-jar"
- depends="-util-jar-uptodate, util-compile"
+ depends="util-compile, -util-jar-uptodate"
unless="util.jar.uptodate"
description="Creates the util's jar/s">
Modified: trunk/src/jar/util-xa/build.xml
===================================================================
--- trunk/src/jar/util-xa/build.xml 2007-03-01 03:10:09 UTC (rev 197)
+++ trunk/src/jar/util-xa/build.xml 2007-03-01 06:57:27 UTC (rev 198)
@@ -67,7 +67,7 @@
</target>
<target name="util-xa-jar"
- depends="-util-xa-jar-uptodate, util-xa-compile"
+ depends="util-xa-compile, -util-xa-jar-uptodate"
unless="util-xa.jar.uptodate"
description="Builds the metaphasic utility JAR">
More information about the Mulgara-svn
mailing list