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 an Ant build.xml file:
...
<target name="patch.information" description="Prints out information about patch levels">
<java
fork="true"
classpathref="patch.classpath"
failonerror="true"
classname="com.tacitknowledge.util.migration.jdbc.MigrationInformation">
<sysproperty key="migration.systemname" value="${application.name}"/>
</java>
</target>
...
author: Mike Hardy (mike@tacitknowledge.com) version: $Id: MigrationInformation.java,v 1.10 2005/09/07 22:20:34 chrisa Exp $ See Also: com.tacitknowledge.util.migration.MigrationProcess |