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:
parent
c93bff9a1f
commit
04d67fd6f4
|
@ -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>
|
||||||
|
|
|
@ -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>
|
||||||
|
|
Loading…
Reference in New Issue