From: dion g. <dio...@us...> - 2004-07-19 01:48:20
|
diongillard 04/07/18 18:48:13 Modified: dbunit project.xml dbunit/xdocs changes.xml Log: [maven-scm-plugin] prepare release 1.2 Revision Changes Path 1.22 +16 -11 maven-plugins/dbunit/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/dbunit/project.xml,v retrieving revision 1.21 retrieving revision 1.22 diff -u -r1.21 -r1.22 --- project.xml 19 Jul 2004 01:46:47 -0000 1.21 +++ project.xml 19 Jul 2004 01:47:57 -0000 1.22 @@ -1,36 +1,44 @@ -<?xml version="1.0"?> +<?xml version="1.0" encoding="UTF-8"?> <project> <extend>${basedir}/../plugin-project.xml</extend> <!--pomVersion is in parent --> + <id>maven-dbunit-plugin</id> <name>Dbunit Plug-in</name> <!-- groupId is in parent --> - <currentVersion>1.2-SNAPSHOT</currentVersion> + + <currentVersion>1.2</currentVersion> <!-- organization is in parent --> + <inceptionYear>2003</inceptionYear> <!-- package, logo are in parent. no gumpRepositoryId --> + <description>A plugin to automate Dbunit tasks</description> <shortDescription>Dbunit tasks</shortDescription> <!-- issue tracking url, siteAddress are in parent --> + <siteDirectory>/home/groups/m/ma/maven-plugins/htdocs/maven-dbunit-plugin/</siteDirectory> <distributionDirectory>/home/groups/m/ma/maven-plugins/htdocs/maven-dbunit-plugin/distributions/</distributionDirectory> - <repository> <connection>scm:cvs:pserver:ano...@cv...:/cvsroot/maven-plugins:maven-plugins/dbunit</connection> <developerConnection>scm:cvs:ext:${maven.username}@cvs.sourceforge.net:/cvsroot/maven-plugins:maven-plugins/dbunit</developerConnection> <url>http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/maven-plugins/maven-plugins/dbunit/</url> </repository> - <versions> <version> <id>1.1</id> <name>1.1</name> <tag>MAVEN_PLUGINS_DBUNIT_1_1</tag> </version> + <version> + <id>1.2</id> + <name>1.2</name> + <tag>MAVEN_DBUNIT_1_2</tag> + </version> </versions> <!-- mailingLists is in parent --> - + <developers> <developer> <name>dIon Gillard</name> @@ -42,13 +50,12 @@ </roles> </developer> </developers> - <!-- no contributors --> - <!-- licenses section not done yet --> - + <dependencies> <!-- dbunit deps --> + <dependency> <groupId>dbunit</groupId> <artifactId>dbunit</artifactId> @@ -67,10 +74,8 @@ <artifactId>commons-lang</artifactId> <version>2.0</version> </dependency> - </dependencies> - <!-- build is in the parent --> <!-- reports is in the parent --> - + </project> 1.9 +4 -11 maven-plugins/dbunit/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/dbunit/xdocs/changes.xml,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- changes.xml 19 Jul 2004 00:44:40 -0000 1.8 +++ changes.xml 19 Jul 2004 01:47:57 -0000 1.9 @@ -1,29 +1,22 @@ -<?xml version="1.0"?> +<?xml version="1.0" encoding="UTF-8"?> + <document> <properties> <title>Changes</title> <author email="dio...@so...">dIon Gillard</author> </properties> - <body> - - <release version="1.2-SNAPSHOT" date="in CVS"> + <release version="1.2" date="2004-07-19"> <action dev="diongillard" type="update">Allow schema to be specified for generate-dtd</action> <action dev="diongillard" type="update">Move to dbunit v2</action> <action dev="diongillard" type="fix">Remove old docs</action> </release> - <release version="1.1" date="2004-02-17"> <action dev="diongillard" type="add">Add schema property</action> <action dev="diongillard" type="add">Add import-dataset goal</action> </release> - <release version="1.0" date="Unknown"> - <action dev="diongillard" type="add"> - Initial plugin created. - </action> + <action dev="diongillard" type="add">Initial plugin created.</action> </release> - </body> </document> - |