From: stephane b. <le...@us...> - 2004-11-29 14:24:57
|
le_phan 04/11/29 06:24:51 Modified: kodo plugin.jelly Log: prepare release 3.2.3 Revision Changes Path 1.4 +9 -8 maven-plugins/kodo/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/kodo/plugin.jelly,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- plugin.jelly 16 Jun 2004 18:55:11 -0000 1.3 +++ plugin.jelly 29 Nov 2004 14:24:51 -0000 1.4 @@ -94,8 +94,8 @@ Run schematool to generate any schema ======================================================================== --> - <goal name="kodo:schematool" - description="Run Kodo's schematool to generate the DB schema" + <goal name="kodo:buildschema" + description="Run Kodo's mappingtool to generate the DB schema" prereqs="kodo:init"> <!-- Construct CLASSPATH to add build and other deps --> @@ -112,15 +112,16 @@ </j:if> </path> - <!-- Run schematool using JDO files --> - <ant:java dir="${maven.build.dest}" - classname="kodo.jdbc.schema.SchemaTool" - failonerror="true" + <!-- Run mappingtool --> + <ant:java dir="${maven.build.dest}" + classname="kodo.jdbc.meta.MappingTool" + failonerror="true" fork="true"> <classpath refid="myclasspath"/> - <arg line="-action refresh"/> - <arg line="${kodoMetaDataFiles}"/> + <arg line="-action buildSchema"/> + <arg line="${kodoMetaDataFiles}"/> </ant:java> + </goal> <!-- |