You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by el...@apache.org on 2005/12/23 19:23:03 UTC

svn commit: r358845 - /incubator/roller/trunk/build.xml

Author: eliast
Date: Fri Dec 23 10:22:56 2005
New Revision: 358845

URL: http://svn.apache.org/viewcvs?rev=358845&view=rev
Log:
- fixed a couple of paths that were pointing to hsql instead of hsqldb in tests targets

Modified:
    incubator/roller/trunk/build.xml

Modified: incubator/roller/trunk/build.xml
URL: http://svn.apache.org/viewcvs/incubator/roller/trunk/build.xml?rev=358845&r1=358844&r2=358845&view=diff
==============================================================================
--- incubator/roller/trunk/build.xml (original)
+++ incubator/roller/trunk/build.xml Fri Dec 23 10:22:56 2005
@@ -757,7 +757,7 @@
     <sql driver="org.hsqldb.jdbcDriver"
         url="jdbc:hsqldb:hsql://localhost:3219"
         userid="sa" password=""
-        src="${ro.build}/roller/WEB-INF/dbscripts/hsql/createdb.sql"
+        src="${ro.build}/roller/WEB-INF/dbscripts/hsqldb/createdb.sql"
         classpath="${ro.tools}/buildtime/hsqldb.jar" />
 	
     &custom-pre-dbtest;
@@ -809,7 +809,7 @@
     <sql driver="org.hsqldb.jdbcDriver"
         url="jdbc:hsqldb:hsql://localhost:3219"
         userid="sa" password=""
-        src="./build/roller/WEB-INF/dbscripts/hsql/createdb.sql"
+        src="./build/roller/WEB-INF/dbscripts/hsqldb/createdb.sql"
         classpath="${ro.tools}/buildtime/hsqldb.jar" />
 
     <junit fork="true" dir="${build.tests}">