* ant build file for batch execution of migration script

- preparing for nightly build.
This commit is contained in:
Heng Sin Low 2007-10-19 08:50:05 +00:00
parent 172b0c96a5
commit a87293ed8c
4 changed files with 117 additions and 0 deletions

View File

@ -0,0 +1,50 @@
<project name="migrate-db" default="run-scripts" basedir=".">
<property file="../oracle.properties" />
<path id="lib.path">
<fileset dir="../../tools/lib">
<include name="**/*.jar" />
</fileset>
</path>
<taskdef resource="net/sf/antcontrib/antlib.xml">
<classpath>
<fileset dir="../../tools/lib">
<include name="**/*.jar" />
</fileset>
</classpath>
</taskdef>
<target name="init">
<echo message="============================================================" />
<echo message=" Oracle database migration tool for Adempiere ERP" />
<echo message=" Adempiere Licese is GNU GPL License" />
<echo message="============================================================" />
<echo message="" file="sqlplus.log" append="false" />
<echo append="false" file="build.log" message="#Build log:${line.separator}${line.separator}" />
</target>
<target name="run-scripts" depends="init">
<echo message="----- Running migration SQL scripts -----" />
<echo file="sqlplus.log" append="true" message="${line.separator}#Run Scripts:${line.separator}${line.separator}" />
<foreach param="file.name" target="load">
<path>
<fileset dir=".">
<include name="*.sql" />
</fileset>
</path>
</foreach>
</target>
<target name="load">
<echo message="Loading file ${file.name}" />
<exec dir="${oracle.home}/bin" executable="${oracle.home}/bin/sqlplus" resultproperty="sqlplus.result" output="sqlplus.log" append="true">
<arg line="${oracle.connect.param}" />
<arg line="@${file.name}" />
</exec>
<echo message="File ${file.name} status ${sqlplus.result}" />
<echo append="true" file="build.log">File ${file.name} status ${sqlplus.result}</echo>
<echo append="true" file="build.log" message="${line.separator}" />
</target>
</project>

View File

@ -0,0 +1,49 @@
<project name="migrate-db" default="run-scripts" basedir=".">
<property file="../../postgresql.properties" />
<path id="lib.path">
<fileset dir="../../../tools/lib">
<include name="**/*.jar" />
</fileset>
</path>
<taskdef resource="net/sf/antcontrib/antlib.xml">
<classpath>
<fileset dir="../../../tools/lib">
<include name="**/*.jar" />
</fileset>
</classpath>
</taskdef>
<target name="init">
<echo message="============================================================" />
<echo message=" PostgreSQL database update tool for Adempiere ERP" />
<echo message=" Adempiere Licese is GNU GPL License" />
<echo message="============================================================" />
<echo message="" file="psql.log" append="false" />
<echo append="false" file="build.log" message="#Build log:${line.separator}${line.separator}" />
</target>
<target name="run-scripts" depends="init">
<echo message="----- Running migration SQL scripts -----" />
<echo file="psql.log" append="true" message="${line.separator}#Run Scripts:${line.separator}${line.separator}" />
<foreach param="file.name" target="load">
<path>
<fileset dir=".">
<include name="*.sql" />
</fileset>
</path>
</foreach>
</target>
<target name="load">
<echo message="Loading file ${file.name}" />
<exec dir="${postgresql.home}/bin" executable="${postgresql.home}/bin/psql" resultproperty="psql.result" output="psql.log" append="true">
<arg line="-d ${postgresql.database} -q" />
<arg line="-U ${postgresql.user}" />
<arg line="-f ${file.name}" />
<env key="PGPASSWORD" value="${postgresql.password}" />
</exec>
<echo message="File ${file.name} status ${psql.result}" />
<echo append="true" file="build.log">File ${file.name} status ${psql.result}</echo>
<echo append="true" file="build.log" message="${line.separator}" />
</target>
</project>

View File

@ -0,0 +1,6 @@
#ORACLE_HOME
oracle.home=
#sqlplus connection string
oracle.connect.param=adempiere/adempiere

View File

@ -0,0 +1,12 @@
#PostgreSQL home folder
postgresql.home=
#PostgreSQL pgdata folder
postgresql.pgdata=
#adempeire database name
postgresql.database=adempiere
#adempiere database login
postgresql.user=adempiere
#adempiere database password
postgresql.password=adempiere
postgresql.host=localhost
postgresql.port=5432