Launches the migration process as a standalone application.
This class expects the following Java environment parameters:
- migration.systemname - the name of the logical system being migrated
Below is an example of how this class can be configured in build.xml:
...
<target name="patch.database" description="Runs the migration system">
<java
fork="true"
classpathref="patch.classpath"
failonerror="true"
classname="com.tacitknowledge.util.migration.jdbc.StandaloneMigrationLauncher">
<sysproperty key="migration.systemname" value="${application.name}"/>
</java>
</target>
...
author: Mike Hardy (mike@tacitknowledge.com) version: $Id: StandaloneMigrationLauncher.java,v 1.7 2005/09/07 22:20:34 chrisa Exp $ See Also: com.tacitknowledge.util.migration.MigrationProcess |