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> |