|
From: Andy J. <and...@us...> - 2004-06-16 18:55:19
|
andy_jefferson 04/06/16 11:55:11
Modified: kodo/xdocs changes.xml
kodo plugin.jelly project.xml
Log:
Updated to kodo ver 3.1.2. Changed plugin version to be same name as Kodo. All is contrib from Stephane Bouchet
Revision Changes Path
1.2 +5 -2 maven-plugins/kodo/xdocs/changes.xml
Index: changes.xml
===================================================================
RCS file: /cvsroot/maven-plugins/maven-plugins/kodo/xdocs/changes.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- changes.xml 21 Aug 2003 11:11:41 -0000 1.1
+++ changes.xml 16 Jun 2004 18:55:11 -0000 1.2
@@ -2,11 +2,14 @@
<document>
<properties>
<title>Changes</title>
- <author email="an...@aj...">Andy Jefferson</author>
</properties>
<body>
-
+ <release version="3.1.2" date="16-Jun-2004" description="Released for Kodo 3.1.2">
+ <action dev="andy_jefferson" type="add">
+ Released for Kodo 3.1.2 contrib by Stephane Bouchet
+ </action>
+ </release>
<release version="1.0" date="22-Aug-2003" description="Initial release under maven-plugins project">
<action dev="andy_jefferson" type="add">
Released under maven-plugins SourceForge project.
1.3 +8 -3 maven-plugins/kodo/plugin.jelly
Index: plugin.jelly
===================================================================
RCS file: /cvsroot/maven-plugins/maven-plugins/kodo/plugin.jelly,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- plugin.jelly 2 Sep 2003 17:15:16 -0000 1.2
+++ plugin.jelly 16 Jun 2004 18:55:11 -0000 1.3
@@ -66,14 +66,18 @@
<!-- Construct CLASSPATH to include build and other deps -->
<path id="myclasspath">
<path refid="kodoClasspath"/>
+ <path refid="maven.dependency.classpath"/>
<pathelement path="${maven.build.dest}"/>
<pathelement path="${plugin.getDependencyPath('commons-lang')}"/>
<pathelement path="${plugin.getDependencyPath('commons-logging')}"/>
+ <pathelement path="${plugin.getDependencyPath('mx4j+tools')}"/>
+ <pathelement path="${plugin.getDependencyPath('mx4j+jmx')}"/>
+
</path>
<!-- Run enhancer on JDO files -->
<ant:java dir="${maven.build.dest}"
- classname="com.solarmetric.kodo.enhance.JDOEnhancer"
+ classname="kodo.enhance.JDOEnhancer"
failonerror="true"
fork="true">
<classpath refid="myclasspath"/>
@@ -101,6 +105,7 @@
<pathelement path="${plugin.getDependencyPath('log4j')}"/>
<pathelement path="${plugin.getDependencyPath('commons-lang')}"/>
<pathelement path="${plugin.getDependencyPath('commons-logging')}"/>
+ <pathelement path="${plugin.getDependencyPath('commons-pool')}"/>
<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)}"/>
@@ -109,7 +114,7 @@
<!-- Run schematool using JDO files -->
<ant:java dir="${maven.build.dest}"
- classname="com.solarmetric.kodo.impl.jdbc.schema.SchemaTool"
+ classname="kodo.jdbc.schema.SchemaTool"
failonerror="true"
fork="true">
<classpath refid="myclasspath"/>
@@ -129,7 +134,7 @@
<!-- Run JDOVersion -->
<ant:java dir="${maven.build.dest}"
- classname="com.solarmetric.kodo.conf.JDOVersion"
+ classname="kodo.conf.JDOVersion"
failonerror="true"
fork="true">
<classpath refid="kodoClasspath"/>
1.9 +25 -6 maven-plugins/kodo/project.xml
Index: project.xml
===================================================================
RCS file: /cvsroot/maven-plugins/maven-plugins/kodo/project.xml,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- project.xml 20 Jan 2004 08:35:51 -0000 1.8
+++ project.xml 16 Jun 2004 18:55:11 -0000 1.9
@@ -2,14 +2,15 @@
<extend>${basedir}/../plugin-project.xml</extend>
<!-- pomVersion is in parent -->
<id>maven-kodo-plugin</id>
- <name>Kodo JDO Plugin</name>
+ <name>Kodo Plugin</name>
<!-- groupId is in parent -->
- <currentVersion>1.0</currentVersion>
+ <currentVersion>3.1.2</currentVersion>
<!-- organization is in parent -->
<inceptionYear>2003</inceptionYear>
<!-- package, logo are in parent. no gumpRepositoryId -->
<description>Maven plugin for Solarmetric's Kodo JDO implementation</description>
<shortDescription>Maven plugin for Solarmetric's Kodo JDO implementation</shortDescription>
+ <url>http://maven-plugins.sourceforge.net/kodo/</url>
<!-- issueTrackingUrl, siteAddress are in parent -->
<siteDirectory>/home/groups/m/ma/maven-plugins/htdocs/kodo/</siteDirectory>
<distributionDirectory>/home/groups/m/ma/maven-plugins/htdocs/kodo/distributions/</distributionDirectory>
@@ -23,7 +24,6 @@
<developer>
<name>Andy Jefferson</name>
<id>andy_jefferson</id>
- <email>an...@aj...</email>
<organization>AJSoft Limited</organization>
<roles>
<role>Developer</role>
@@ -32,31 +32,50 @@
</developers>
<dependencies>
- <!-- if any of the kodo dependencies are updated remember to update ../maven-xml -->
<dependency>
<groupId>kodo</groupId>
<artifactId>kodo-jdo</artifactId>
- <version>2.5.2</version>
+ <version>3.1.2</version>
</dependency>
<dependency>
<groupId>kodo</groupId>
<artifactId>kodo-jdo-runtime</artifactId>
- <version>2.5.2</version>
+ <version>3.1.2</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.0.3</version>
+
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>1.0.1</version>
+
</dependency>
+<dependency>
+ <groupId>commons-pool</groupId>
+ <artifactId>commons-pool</artifactId>
+ <version>1.1</version>
+
+ </dependency>
+
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.8</version>
+
+ </dependency>
+ <dependency>
+ <groupId>mx4j</groupId>
+ <artifactId>mx4j-jmx</artifactId>
+ <version>2.0.1</version>
+ </dependency>
+ <dependency>
+ <groupId>mx4j</groupId>
+ <artifactId>mx4j-tools</artifactId>
+ <version>1.1</version>
</dependency>
</dependencies>
|
|
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>
|