From: stephane b. <le...@us...> - 2005-10-04 12:16:23
|
le_phan 05/10/04 05:16:08 Modified: kodo plugin.jelly project.xml Log: prepare for release 4.0.0-EA2 Revision Changes Path 1.5 +13 -5 maven-plugins/kodo/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/kodo/plugin.jelly,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- plugin.jelly 29 Nov 2004 14:24:51 -0000 1.4 +++ plugin.jelly 4 Oct 2005 12:16:08 -0000 1.5 @@ -33,6 +33,7 @@ <pathelement path="${plugin.getDependencyPath('kodo+jdo')}"/> <pathelement path="${plugin.getDependencyPath('kodo+jdo-runtime')}"/> <pathelement path="${context.getVariable(kodo_properties_dir_var_name)}"/> + <pathelement path="${plugin.resources}"/> </path> <!-- Construct FileSet of JDO meta-data files --> @@ -72,18 +73,21 @@ <pathelement path="${plugin.getDependencyPath('commons-logging')}"/> <pathelement path="${plugin.getDependencyPath('mx4j+tools')}"/> <pathelement path="${plugin.getDependencyPath('mx4j+jmx')}"/> - + <pathelement path="${plugin.getDependencyPath('jta+spec')}"/> + <pathelement path="${plugin.getDependencyPath('jca')}"/> </path> <!-- Run enhancer on JDO files --> <ant:java dir="${maven.build.dest}" - classname="kodo.enhance.JDOEnhancer" + classname="kodo.enhance.PCEnhancer" failonerror="true" fork="true"> <classpath refid="myclasspath"/> + <arg line="-properties ${context.getVariable(kodo_properties_dir_var_name)}jdo.properties"/> <arg line="-throwExceptions true"/> <arg line="-verifiers com.solarmetric.kodo.impl.jdbc.ormapping.MetaDataVerifier"/> <arg line="${kodoMetaDataFiles}"/> + </ant:java> <echo>Classes are now JDO-enhanced for Kodo</echo> @@ -106,6 +110,8 @@ <pathelement path="${plugin.getDependencyPath('commons-lang')}"/> <pathelement path="${plugin.getDependencyPath('commons-logging')}"/> <pathelement path="${plugin.getDependencyPath('commons-pool')}"/> + <pathelement path="${plugin.getDependencyPath('jta+spec')}"/> + <pathelement path="${plugin.getDependencyPath('jca')}"/> <j:set var="jdo_jdbc_jar_var_name" value="maven.kodo.jdbc.jar"/> <j:if test="${context.getVariable(jdo_jdbc_jar_var_name) != null}"> <pathelement path="${context.getVariable(jdo_jdbc_jar_var_name)}"/> @@ -118,8 +124,10 @@ failonerror="true" fork="true"> <classpath refid="myclasspath"/> - <arg line="-action buildSchema"/> - <arg line="${kodoMetaDataFiles}"/> + <arg line="-properties ${context.getVariable(kodo_properties_dir_var_name)}jdo.properties"/> + <arg line="-throwExceptions true"/> + <arg line="-verifiers com.solarmetric.kodo.impl.jdbc.ormapping.MetaDataVerifier"/> + <arg line="${kodoMetaDataFiles}"/> </ant:java> </goal> @@ -135,7 +143,7 @@ <!-- Run JDOVersion --> <ant:java dir="${maven.build.dest}" - classname="kodo.conf.JDOVersion" + classname="kodo.conf.KodoVersion" failonerror="true" fork="true"> <classpath refid="kodoClasspath"/> 1.14 +22 -8 maven-plugins/kodo/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/kodo/project.xml,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- project.xml 14 Jan 2005 16:14:51 -0000 1.13 +++ project.xml 4 Oct 2005 12:16:08 -0000 1.14 @@ -8,7 +8,7 @@ <id>maven-kodo-plugin</id> <name>Kodo Plugin</name> <!-- groupId is in parent --> - <currentVersion>3.2.4</currentVersion> + <currentVersion>4.0.0-EA2</currentVersion> <!-- organization is in parent --> <inceptionYear>2003</inceptionYear> <!-- package, logo are in parent. no gumpRepositoryId --> @@ -58,17 +58,19 @@ <version>1.2.8</version> <type>jar</type> </dependency> - <dependency> - <groupId>kodo</groupId> - <artifactId>kodo-jdo</artifactId> - <version>3.2.4</version> - <type>jar</type> - </dependency> + <dependency> + <groupId>kodo</groupId> + <artifactId>kodo-jdo</artifactId> + <version>4.0.0-EA2</version> + <type>jar</type> + <url>http://www.solarmetric.com/</url> + </dependency> <dependency> <groupId>kodo</groupId> <artifactId>kodo-jdo-runtime</artifactId> - <version>3.2.4</version> + <version>4.0.0-EA2</version> <type>jar</type> + <url>http://www.solarmetric.com/</url> </dependency> <dependency> <groupId>mx4j</groupId> @@ -82,6 +84,18 @@ <version>1.1</version> <type>jar</type> </dependency> + <dependency> + <groupId>jta</groupId> + <artifactId>jta-spec</artifactId> + <version>1.0.1</version> + <type>jar</type> + </dependency> + <dependency> + <groupId>jca</groupId> + <artifactId>jca</artifactId> + <version>1.0</version> + <type>jar</type> + </dependency> </dependencies> </project> |