Correct ant task example: databaseToDdl
---------------------------------------
Key: DDLUTILS-88
URL: http://issues.apache.org/jira/browse/DDLUTILS-88
Project: DdlUtils
Type: Improvement
Components: Documentation
Reporter: jim vester
Assigned to: Thomas Dudziak
Priority: Minor
Correct The ant task databaseToDdl example is presented in the documenaton is
not syntactically correct.
When cut and paste into an ant project the task does not work because the
"runtime_classpath'name could not be found. Turns out it is defined as
"runtime.classpath"
To fix flip the "." to an underscore "_" so it is consistent with the other ant
example.
<path id="runtime.classpath">
...
<target name="database-dump" description="Dumps the database structure">
<taskdef name="databaseToDdl"
classname="org.apache.ddlutils.task.DatabaseToDdlTask">
<classpath refid="runtime-classpath"/>
...
Hope this helps..
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira