Fix on ant scripts on migration - thanks to Alex Yang for the tip at

https://groups.google.com/d/msg/idempiere/y5YH7DExTAo/7csdvQr8m2EJ
This commit is contained in:
Carlos Ruiz 2013-03-22 20:22:01 -05:00
parent c93bff9a1f
commit 04d67fd6f4
2 changed files with 4 additions and 4 deletions

View File

@ -1,13 +1,13 @@
<project name="migrate-db-oracle" default="run-scripts" basedir="."> <project name="migrate-db-oracle" default="run-scripts" basedir=".">
<property file="../../oracle.properties" /> <property file="../../oracle.properties" />
<path id="lib.path"> <path id="lib.path">
<fileset dir="../../../tools/lib"> <fileset dir="../../../db/ddlutils/lib">
<include name="**/*.jar" /> <include name="**/*.jar" />
</fileset> </fileset>
</path> </path>
<taskdef resource="net/sf/antcontrib/antlib.xml"> <taskdef resource="net/sf/antcontrib/antlib.xml">
<classpath> <classpath>
<fileset dir="../../../tools/lib"> <fileset dir="../../../db/ddlutils/lib">
<include name="**/*.jar" /> <include name="**/*.jar" />
</fileset> </fileset>
</classpath> </classpath>

View File

@ -1,13 +1,13 @@
<project name="migrate-db-postgre" default="run-scripts" basedir="."> <project name="migrate-db-postgre" default="run-scripts" basedir=".">
<property file="../../postgresql.properties" /> <property file="../../postgresql.properties" />
<path id="lib.path"> <path id="lib.path">
<fileset dir="../../../tools/lib"> <fileset dir="../../../db/ddlutils/lib">
<include name="**/*.jar" /> <include name="**/*.jar" />
</fileset> </fileset>
</path> </path>
<taskdef resource="net/sf/antcontrib/antlib.xml"> <taskdef resource="net/sf/antcontrib/antlib.xml">
<classpath> <classpath>
<fileset dir="../../../tools/lib"> <fileset dir="../../../db/ddlutils/lib">
<include name="**/*.jar" /> <include name="**/*.jar" />
</fileset> </fileset>
</classpath> </classpath>