You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(37) |
Oct
(12) |
Nov
|
Dec
(47) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(9) |
Feb
(6) |
Mar
(1) |
Apr
(85) |
May
(9) |
Jun
|
Jul
(6) |
Aug
(85) |
Sep
(42) |
Oct
(27) |
Nov
(15) |
Dec
(27) |
2004 |
Jan
(39) |
Feb
(52) |
Mar
(43) |
Apr
(32) |
May
(18) |
Jun
(5) |
Jul
(63) |
Aug
(69) |
Sep
(12) |
Oct
(80) |
Nov
(55) |
Dec
(30) |
2005 |
Jan
(27) |
Feb
(6) |
Mar
(43) |
Apr
(5) |
May
(48) |
Jun
(48) |
Jul
(100) |
Aug
(16) |
Sep
(43) |
Oct
(25) |
Nov
(249) |
Dec
(2) |
2006 |
Jan
(9) |
Feb
(2) |
Mar
|
Apr
(26) |
May
(21) |
Jun
(8) |
Jul
(14) |
Aug
(104) |
Sep
|
Oct
|
Nov
|
Dec
|
2007 |
Jan
(32) |
Feb
|
Mar
(2) |
Apr
|
May
(38) |
Jun
(2) |
Jul
(9) |
Aug
(1) |
Sep
|
Oct
|
Nov
(1) |
Dec
|
2008 |
Jan
|
Feb
(3) |
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: dion g. <dio...@us...> - 2004-07-28 15:02:03
|
diongillard 04/07/28 08:01:50 Modified: was5 plugin.properties plugin.jelly Log: Reinstall app goal Revision Changes Path 1.2 +6 -0 maven-plugins/was5/plugin.properties Index: plugin.properties =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/plugin.properties,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- plugin.properties 9 Mar 2004 11:36:23 -0000 1.1 +++ plugin.properties 28 Jul 2004 15:01:50 -0000 1.2 @@ -93,3 +93,9 @@ maven.was5.stopApp.port=${maven.was5.port} maven.was5.stopApp.username=${maven.was5.username} maven.was5.stopApp.password=${maven.was5.password} + +# +# reinstall sleep properties +# +maven.was5.sleep.start=60 +maven.was5.sleep.stop=30 1.2 +15 -1 maven-plugins/was5/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/plugin.jelly,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- plugin.jelly 9 Mar 2004 11:36:23 -0000 1.1 +++ plugin.jelly 28 Jul 2004 15:01:50 -0000 1.2 @@ -120,7 +120,7 @@ </goal> <goal name="was5:installApp" description="Install an application on a WebSphere Appserver"> - <ant:fail unless="maven.was5.installApp.ear">maven.was.installApp.ear must be specified</ant:fail> + <ant:fail unless="maven.was5.installApp.ear">maven.was5.installApp.ear must be specified</ant:fail> <taskdef name="wasInstallApp" classname="com.ibm.websphere.ant.tasks.InstallApplication" classpath="${maven.was5.home}/lib/wsanttasks.jar"/> <ant:wasInstallApp ear="${maven.was5.installApp.ear}"> @@ -189,4 +189,18 @@ </goal> + <!-- reinstall an app --> + <goal name="was5:reinstallApp" description="Reinstall an application on a WebSphere Appserver"> + <attainGoal name="was5:stopApp"/> + <sleep seconds="${maven.was5.sleep.stop}"/> + <attainGoal name="was5:stopServer"/> + <sleep seconds="${maven.was5.sleep.stop}"/> + <attainGoal name="was5:uninstallApp"/> + <sleep seconds="${maven.was5.sleep.stop}"/> + <attainGoal name="was5:installApp"/> + <attainGoal name="was5:startServer"/> + <sleep seconds="${maven.was5.sleep.start}"/> + <attainGoal name="was5:startApp"/> + <sleep seconds="${maven.was5.sleep.start}"/> + </goal> </project> \ No newline at end of file |
From: dion g. <dio...@us...> - 2004-07-28 14:34:47
|
diongillard 04/07/28 07:34:39 Modified: dbunit project.xml Log: Prep for release Revision Changes Path 1.26 +5 -0 maven-plugins/dbunit/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/dbunit/project.xml,v retrieving revision 1.25 retrieving revision 1.26 diff -u -r1.25 -r1.26 --- project.xml 28 Jul 2004 14:33:23 -0000 1.25 +++ project.xml 28 Jul 2004 14:34:38 -0000 1.26 @@ -36,6 +36,11 @@ <name>1.2</name> <tag>MAVEN_DBUNIT_1_2</tag> </version> + <version> + <id>1.3</id> + <name>1.3</name> + <tag>MAVEN_PLUGINS_DBUNIT_1_3</tag> + </version> </versions> <!-- mailingLists is in parent --> |
From: dion g. <dio...@us...> - 2004-07-28 14:33:30
|
diongillard 04/07/28 07:33:23 Modified: dbunit project.xml Log: Prep for release Revision Changes Path 1.25 +1 -1 maven-plugins/dbunit/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/dbunit/project.xml,v retrieving revision 1.24 retrieving revision 1.25 diff -u -r1.24 -r1.25 --- project.xml 28 Jul 2004 06:10:47 -0000 1.24 +++ project.xml 28 Jul 2004 14:33:23 -0000 1.25 @@ -8,7 +8,7 @@ <name>Dbunit Plug-in</name> <!-- groupId is in parent --> - <currentVersion>1.3-SNAPSHOT</currentVersion> + <currentVersion>1.3</currentVersion> <!-- organization is in parent --> <inceptionYear>2003</inceptionYear> |
From: dion g. <dio...@us...> - 2004-07-28 07:16:58
|
diongillard 04/07/28 00:16:50 Modified: dbunit/xdocs goals.xml Log: typo Revision Changes Path 1.5 +1 -1 maven-plugins/dbunit/xdocs/goals.xml Index: goals.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/dbunit/xdocs/goals.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- goals.xml 28 Jul 2004 07:04:55 -0000 1.4 +++ goals.xml 28 Jul 2004 07:16:49 -0000 1.5 @@ -15,7 +15,7 @@ <name>dbunit:export-xls</name> <description> Create a spreadsheet in target/dbunit/export.xls from a set of tables. - Specify a variable called <code>tables</table> as a comma separated + Specify a variable called <code>tables</code> as a comma separated list of tables to export, or leave it blank for all. </description> </goal> |
From: dion g. <dio...@us...> - 2004-07-28 07:05:03
|
diongillard 04/07/28 00:04:56 Modified: dbunit/xdocs goals.xml Log: Document export-xls goal Revision Changes Path 1.4 +8 -0 maven-plugins/dbunit/xdocs/goals.xml Index: goals.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/dbunit/xdocs/goals.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- goals.xml 18 Aug 2003 02:36:55 -0000 1.3 +++ goals.xml 28 Jul 2004 07:04:55 -0000 1.4 @@ -12,6 +12,14 @@ <description>generate dataset and dtd for connection</description> </goal> <goal> + <name>dbunit:export-xls</name> + <description> + Create a spreadsheet in target/dbunit/export.xls from a set of tables. + Specify a variable called <code>tables</table> as a comma separated + list of tables to export, or leave it blank for all. + </description> + </goal> + <goal> <name>dbunit:generate-dataset</name> <description>Generate a dbunit dataset for a connection</description> </goal> |
From: dion g. <dio...@us...> - 2004-07-28 06:11:04
|
diongillard 04/07/27 23:10:48 Modified: dbunit project.xml dbunit/xdocs changes.xml Log: use dbunit 2.1 Revision Changes Path 1.24 +1 -1 maven-plugins/dbunit/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/dbunit/project.xml,v retrieving revision 1.23 retrieving revision 1.24 diff -u -r1.23 -r1.24 --- project.xml 19 Jul 2004 02:05:28 -0000 1.23 +++ project.xml 28 Jul 2004 06:10:47 -0000 1.24 @@ -59,7 +59,7 @@ <dependency> <groupId>dbunit</groupId> <artifactId>dbunit</artifactId> - <version>2.0</version> + <version>2.1</version> <properties> <classloader>root.maven</classloader> </properties> 1.10 +3 -0 maven-plugins/dbunit/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/dbunit/xdocs/changes.xml,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- changes.xml 19 Jul 2004 01:47:57 -0000 1.9 +++ changes.xml 28 Jul 2004 06:10:48 -0000 1.10 @@ -6,6 +6,9 @@ <author email="dio...@so...">dIon Gillard</author> </properties> <body> + <release version="1.3" date="in CVS"> + <action dev="diongillard" type="update">Use dbunit v2.1</action> + </release> <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> |
From: dion g. <dio...@us...> - 2004-07-20 09:10:30
|
diongillard 04/07/20 02:10:24 Modified: was40/xdocs goals.xml Log: Add missing docs Revision Changes Path 1.6 +25 -10 maven-plugins/was40/xdocs/goals.xml Index: goals.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was40/xdocs/goals.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- goals.xml 13 Jul 2004 06:55:42 -0000 1.5 +++ goals.xml 20 Jul 2004 09:10:24 -0000 1.6 @@ -32,7 +32,7 @@ </description> </goal> <goal> - <name>was40:deploy-ear</name> + <name>was40:app-install</name> <description>Deploys an enterprise application to a given server group <b>or</b> application server <i>Required properties for this goal are:</i> <ul> @@ -46,6 +46,30 @@ </description> </goal> <goal> + <name>was40:app-reinstall</name> + <description> + <p>Re-deploys an enterprise application.</p> + <p>To do this it calls:</p> + <ol> + <li>was40:app-stop</li> + <li>was40:stop-appserver</li> + <li>was40:undeploy-ear</li> + <li>was40:deploy-ear</li> + <li>was40:start-appserver</li> + <li>was40:app-start</li> + </ol> + </description> + </goal> + <goal> + <name>was40:app-remove</name> + <description>Remove an enterprise application<br/> + <i>Required properties for this goal are:</i> + <ul> + <li>${maven.was40.enterprise.app.name} - Name of the enterprise application to remove</li> + </ul> + </description> + </goal> + <goal> <name>was40:deploy-to-servergroup</name> <description>Deploys an application to the specified server group <ul> @@ -120,15 +144,6 @@ </ul> </description> </goal> - <goal> - <name>was40:undeploy-ear</name> - <description>Remove an enterprise application<br/> - <i>Required properties for this goal are:</i> - <ul> - <li>${maven.was40.enterprise.app.name} - Name of the enterprise application to remove</li> - </ul> - </description> - </goal> </goals> </body> </document> \ No newline at end of file |
From: dion g. <dio...@us...> - 2004-07-20 09:10:09
|
diongillard 04/07/20 02:10:02 Modified: was40/xdocs changes.xml was40 project.xml Log: Add missing docs Revision Changes Path 1.19 +3 -0 maven-plugins/was40/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was40/xdocs/changes.xml,v retrieving revision 1.18 retrieving revision 1.19 diff -u -r1.18 -r1.19 --- changes.xml 20 Jul 2004 06:40:24 -0000 1.18 +++ changes.xml 20 Jul 2004 09:10:02 -0000 1.19 @@ -6,6 +6,9 @@ <author email="di...@ap...">dIon Gillard</author> </properties> <body> + <release version="1.4.2-SNAPSHOT" date="in CVS"> + <action dev="diongillard" type="update">Add goals to docs</action> + </release> <release version="1.4.1" date="2004-07-20"> <action dev="diongillard" type="fix">Fix typo in was40:deploy-ear goal</action> </release> 1.18 +1 -1 maven-plugins/was40/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was40/project.xml,v retrieving revision 1.17 retrieving revision 1.18 diff -u -r1.17 -r1.18 --- project.xml 20 Jul 2004 06:40:24 -0000 1.17 +++ project.xml 20 Jul 2004 09:10:02 -0000 1.18 @@ -8,7 +8,7 @@ <name>WebSphere 4.0 Plug-in</name> <!-- groupId is in parent --> - <currentVersion>1.4.1</currentVersion> + <currentVersion>1.4.2-SNAPSHOT</currentVersion> <!-- organization is in parent --> <inceptionYear>2003</inceptionYear> |
From: dion g. <dio...@us...> - 2004-07-20 06:40:30
|
diongillard 04/07/19 23:40:24 Modified: was40 project.xml was40/xdocs changes.xml Log: [maven-scm-plugin] prepare release 1.4.1 Revision Changes Path 1.17 +6 -1 maven-plugins/was40/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was40/project.xml,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- project.xml 20 Jul 2004 06:24:34 -0000 1.16 +++ project.xml 20 Jul 2004 06:40:24 -0000 1.17 @@ -8,7 +8,7 @@ <name>WebSphere 4.0 Plug-in</name> <!-- groupId is in parent --> - <currentVersion>1.4.1-SNAPSHOT</currentVersion> + <currentVersion>1.4.1</currentVersion> <!-- organization is in parent --> <inceptionYear>2003</inceptionYear> @@ -47,6 +47,11 @@ <name>1.4</name> <tag>MAVEN_WAS40_1_4</tag> </version> + <version> + <id>1.4.1</id> + <name>1.4.1</name> + <tag>MAVEN-PLUGINS-WAS40-1_4_1</tag> + </version> </versions> <!-- mailingLists is in parent --> 1.18 +1 -1 maven-plugins/was40/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was40/xdocs/changes.xml,v retrieving revision 1.17 retrieving revision 1.18 diff -u -r1.17 -r1.18 --- changes.xml 20 Jul 2004 06:24:03 -0000 1.17 +++ changes.xml 20 Jul 2004 06:40:24 -0000 1.18 @@ -6,7 +6,7 @@ <author email="di...@ap...">dIon Gillard</author> </properties> <body> - <release version="1.4.1-SNAPSHOT" date="in CVS"> + <release version="1.4.1" date="2004-07-20"> <action dev="diongillard" type="fix">Fix typo in was40:deploy-ear goal</action> </release> <release version="1.4" date="2004-07-19"> |
From: dion g. <dio...@us...> - 2004-07-20 06:24:42
|
diongillard 04/07/19 23:24:34 Modified: was40 project.xml Log: Bump version due to changes Revision Changes Path 1.16 +1 -1 maven-plugins/was40/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was40/project.xml,v retrieving revision 1.15 retrieving revision 1.16 diff -u -r1.15 -r1.16 --- project.xml 18 Jul 2004 15:52:09 -0000 1.15 +++ project.xml 20 Jul 2004 06:24:34 -0000 1.16 @@ -8,7 +8,7 @@ <name>WebSphere 4.0 Plug-in</name> <!-- groupId is in parent --> - <currentVersion>1.4</currentVersion> + <currentVersion>1.4.1-SNAPSHOT</currentVersion> <!-- organization is in parent --> <inceptionYear>2003</inceptionYear> |
From: dion g. <dio...@us...> - 2004-07-20 06:24:10
|
diongillard 04/07/19 23:24:03 Modified: was40/xdocs changes.xml Log: Fix changes Revision Changes Path 1.17 +3 -0 maven-plugins/was40/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was40/xdocs/changes.xml,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- changes.xml 18 Jul 2004 15:52:10 -0000 1.16 +++ changes.xml 20 Jul 2004 06:24:03 -0000 1.17 @@ -6,6 +6,9 @@ <author email="di...@ap...">dIon Gillard</author> </properties> <body> + <release version="1.4.1-SNAPSHOT" date="in CVS"> + <action dev="diongillard" type="fix">Fix typo in was40:deploy-ear goal</action> + </release> <release version="1.4" date="2004-07-19"> <action dev="diongillard" type="update">Added app-reinstall goal.</action> <action dev="diongillard" type="update">Added app-install and remove goals as synonyms for deploy-ear and undeploy-ear.</action> |
From: dion g. <dio...@us...> - 2004-07-20 06:17:21
|
diongillard 04/07/19 23:17:15 Modified: was40 plugin.jelly Log: Fix fricking typo Revision Changes Path 1.14 +1 -1 maven-plugins/was40/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was40/plugin.jelly,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- plugin.jelly 18 Jul 2004 13:35:04 -0000 1.13 +++ plugin.jelly 20 Jul 2004 06:17:15 -0000 1.14 @@ -90,7 +90,7 @@ <goal name="was40:deploy-ear" description="Deploy an enterprise application"> <echo>DEPRECATED: Please use was40:app-install</echo> - <attainGoal name="was40:app-deploy"/> + <attainGoal name="was40:app-install"/> </goal> <goal name="was40:app-install" description="Deploy an enterprise application"> |
From: dion g. <dio...@us...> - 2004-07-19 02:05:34
|
diongillard 04/07/18 19:05:28 Modified: dbunit project.xml Log: Bump version due to change for navigation Revision Changes Path 1.23 +1 -1 maven-plugins/dbunit/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/dbunit/project.xml,v retrieving revision 1.22 retrieving revision 1.23 diff -u -r1.22 -r1.23 --- project.xml 19 Jul 2004 01:47:57 -0000 1.22 +++ project.xml 19 Jul 2004 02:05:28 -0000 1.23 @@ -8,7 +8,7 @@ <name>Dbunit Plug-in</name> <!-- groupId is in parent --> - <currentVersion>1.2</currentVersion> + <currentVersion>1.3-SNAPSHOT</currentVersion> <!-- organization is in parent --> <inceptionYear>2003</inceptionYear> |
From: dion g. <dio...@us...> - 2004-07-19 02:01:55
|
diongillard 04/07/18 19:01:49 Modified: dbunit/xdocs navigation.xml Log: Remove old download menu Revision Changes Path 1.6 +0 -3 maven-plugins/dbunit/xdocs/navigation.xml Index: navigation.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/dbunit/xdocs/navigation.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- navigation.xml 16 Feb 2004 15:40:01 -0000 1.5 +++ navigation.xml 19 Jul 2004 02:01:49 -0000 1.6 @@ -12,8 +12,5 @@ <item name="Goals" href="/goals.html" /> <item name="Properties" href="/properties.html" /> </menu> - <menu name="Downloads"> - <item name="v1.1" href="http://www.ibiblio.org/maven/maven-plugins/plugins/maven-dbunit-plugin-1.1.jar"/> - </menu> </body> </project> |
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> - |
From: dion g. <dio...@us...> - 2004-07-19 01:46:53
|
diongillard 04/07/18 18:46:47 Modified: dbunit project.xml Log: Add developer connection so scm:prepare-release will work Revision Changes Path 1.21 +1 -0 maven-plugins/dbunit/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/dbunit/project.xml,v retrieving revision 1.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- project.xml 25 Apr 2004 18:55:40 -0000 1.20 +++ project.xml 19 Jul 2004 01:46:47 -0000 1.21 @@ -18,6 +18,7 @@ <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> |
From: dion g. <dio...@us...> - 2004-07-19 00:44:47
|
diongillard 04/07/18 17:44:40 Modified: dbunit/xdocs changes.xml Log: Add -SNAPSHOT to version Revision Changes Path 1.8 +1 -1 maven-plugins/dbunit/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/dbunit/xdocs/changes.xml,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- changes.xml 25 Apr 2004 16:46:03 -0000 1.7 +++ changes.xml 19 Jul 2004 00:44:40 -0000 1.8 @@ -7,7 +7,7 @@ <body> - <release version="1.2" date="in CVS"> + <release version="1.2-SNAPSHOT" date="in CVS"> <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> |
From: dion g. <dio...@us...> - 2004-07-19 00:41:31
|
diongillard 04/07/18 17:41:23 Modified: dbunit/src/main/org/apache/maven/dbunit DataSetTool.java Log: Refactoring and docs Revision Changes Path 1.3 +50 -10 maven-plugins/dbunit/src/main/org/apache/maven/dbunit/DataSetTool.java Index: DataSetTool.java =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/dbunit/src/main/org/apache/maven/dbunit/DataSetTool.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- DataSetTool.java 25 Apr 2004 18:55:42 -0000 1.2 +++ DataSetTool.java 19 Jul 2004 00:41:23 -0000 1.3 @@ -66,6 +66,7 @@ import org.dbunit.database.IDatabaseConnection; import org.dbunit.dataset.DataSetException; +import org.dbunit.dataset.IDataSet; import org.dbunit.dataset.excel.XlsDataSet; import org.dbunit.operation.DatabaseOperation; @@ -84,19 +85,38 @@ /** format for excel files */ private static final String EXCEL = "EXCEL"; + /** + * @return the format of the data set. + */ public String getDataSetFormat() { return dataSetFormat; - } + } + + /** + * TODO better document this + * Set the format of the dataset, e.g. EXCEL + * @param name the dbunit dataset format + */ public void setDataSetFormat(String name) { dataSetFormat = name; } + /** + * The operation to perform on a dataset, e.g. + * <code>INSERT</code>, <code>CLEAN_INSERT</code>, <code>DELETE</code> or + * <code>EXPORT</code> + */ public String getOperation() { return operation; - } + } + + /** + * @return the operation to perform on a dataset + * @see #getOperation() + */ public void setOperation(String name) { operation = name; @@ -106,32 +126,52 @@ if (operation.equalsIgnoreCase("INSERT")) dbOperation = DatabaseOperation.INSERT; } + /** + * @return a comma separated list of table names + */ public String getExportTables() { return exportTables; - } + } + + /** + * set the list of tables to be exported + * @param tables a comma separated list of table names + */ public void setExportTables(String tables) { exportTables = tables; } + /** + * @return the dataset to operate on from the given connection + */ + private IDataSet getDataSet(IDatabaseConnection connection) throws SQLException + { + if (getExportTables() == null) return connection.createDataSet(); + else return connection.createDataSet(StringUtils.split(getExportTables(), ",")); + } + + /** + * Process a dataset using a DbUnit operation + */ public void process() throws ClassNotFoundException, SQLException, IOException, DataSetException { if (getOperation().equalsIgnoreCase(EXPORT)) { - // database connection + // database connection - close? IDatabaseConnection connection = getConnection(); // write file if (getDataSetFormat().equalsIgnoreCase("EXCEL")) { - if (getExportTables() == null) XlsDataSet.write(connection.createDataSet(), new FileOutputStream(getFileName())); - else - { - String[] tables = StringUtils.split(getExportTables(), ","); - XlsDataSet.write(connection.createDataSet(tables), new FileOutputStream(getFileName())); - } + XlsDataSet.write(getDataSet(connection), new FileOutputStream(getFileName())); } } + else if (dbOperation != null) + { + // TODO create a dataset of the right type + // dbOperation.execute(getConnection(), dataset) + } } } \ No newline at end of file |
From: dion g. <dio...@us...> - 2004-07-18 15:52:16
|
diongillard 04/07/18 08:52:10 Modified: was40 project.xml was40/xdocs changes.xml Log: [maven-scm-plugin] prepare release 1.4 Revision Changes Path 1.15 +6 -1 maven-plugins/was40/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was40/project.xml,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- project.xml 18 Jul 2004 15:49:58 -0000 1.14 +++ project.xml 18 Jul 2004 15:52:09 -0000 1.15 @@ -8,7 +8,7 @@ <name>WebSphere 4.0 Plug-in</name> <!-- groupId is in parent --> - <currentVersion>1.4-SNAPSHOT</currentVersion> + <currentVersion>1.4</currentVersion> <!-- organization is in parent --> <inceptionYear>2003</inceptionYear> @@ -42,6 +42,11 @@ <name>1.3</name> <tag>MAVEN_WAS40_1_3</tag> </version> + <version> + <id>1.4</id> + <name>1.4</name> + <tag>MAVEN_WAS40_1_4</tag> + </version> </versions> <!-- mailingLists is in parent --> 1.16 +1 -1 maven-plugins/was40/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was40/xdocs/changes.xml,v retrieving revision 1.15 retrieving revision 1.16 diff -u -r1.15 -r1.16 --- changes.xml 18 Jul 2004 15:49:57 -0000 1.15 +++ changes.xml 18 Jul 2004 15:52:10 -0000 1.16 @@ -6,7 +6,7 @@ <author email="di...@ap...">dIon Gillard</author> </properties> <body> - <release version="1.4-SNAPSHOT" date="in CVS"> + <release version="1.4" date="2004-07-19"> <action dev="diongillard" type="update">Added app-reinstall goal.</action> <action dev="diongillard" type="update">Added app-install and remove goals as synonyms for deploy-ear and undeploy-ear.</action> <action dev="diongillard" type="update">Updated docs for clarity and formatting</action> |
From: dion g. <dio...@us...> - 2004-07-18 15:50:19
|
diongillard 04/07/18 08:50:12 Modified: was40/xdocs changes.xml was40 project.xml Log: Bump to 1.4-SNAPSHOT Revision Changes Path 1.15 +1 -1 maven-plugins/was40/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was40/xdocs/changes.xml,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- changes.xml 18 Jul 2004 15:49:09 -0000 1.14 +++ changes.xml 18 Jul 2004 15:49:57 -0000 1.15 @@ -6,7 +6,7 @@ <author email="di...@ap...">dIon Gillard</author> </properties> <body> - <release version="1.3.1" date="in CVS"> + <release version="1.4-SNAPSHOT" date="in CVS"> <action dev="diongillard" type="update">Added app-reinstall goal.</action> <action dev="diongillard" type="update">Added app-install and remove goals as synonyms for deploy-ear and undeploy-ear.</action> <action dev="diongillard" type="update">Updated docs for clarity and formatting</action> 1.14 +1 -1 maven-plugins/was40/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was40/project.xml,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- project.xml 18 Jul 2004 13:41:54 -0000 1.13 +++ project.xml 18 Jul 2004 15:49:58 -0000 1.14 @@ -8,7 +8,7 @@ <name>WebSphere 4.0 Plug-in</name> <!-- groupId is in parent --> - <currentVersion>1.3.1-SNAPSHOT</currentVersion> + <currentVersion>1.4-SNAPSHOT</currentVersion> <!-- organization is in parent --> <inceptionYear>2003</inceptionYear> |
From: dion g. <dio...@us...> - 2004-07-18 15:49:16
|
diongillard 04/07/18 08:49:10 Modified: was40/xdocs changes.xml Log: Doc changes Revision Changes Path 1.14 +2 -0 maven-plugins/was40/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was40/xdocs/changes.xml,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- changes.xml 13 Jul 2004 07:04:27 -0000 1.13 +++ changes.xml 18 Jul 2004 15:49:09 -0000 1.14 @@ -7,6 +7,8 @@ </properties> <body> <release version="1.3.1" date="in CVS"> + <action dev="diongillard" type="update">Added app-reinstall goal.</action> + <action dev="diongillard" type="update">Added app-install and remove goals as synonyms for deploy-ear and undeploy-ear.</action> <action dev="diongillard" type="update">Updated docs for clarity and formatting</action> <action dev="diongillard" type="fix">remove use of outputproperty for exec, as multiple executions caused the same error to be displayed</action> </release> |
From: dion g. <dio...@us...> - 2004-07-18 13:47:37
|
diongillard 04/07/18 06:47:31 Modified: was40/xdocs properties.xml Log: Revamp properties doc Revision Changes Path 1.3 +129 -82 maven-plugins/was40/xdocs/properties.xml Index: properties.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was40/xdocs/properties.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- properties.xml 5 Mar 2004 05:14:04 -0000 1.2 +++ properties.xml 18 Jul 2004 13:47:31 -0000 1.3 @@ -6,7 +6,7 @@ <author email="di...@ap...">dIon Gillard</author> </properties> <body> - <section name="Maven WebSphere 4.0 Plug-in Settings"> + <section name="WebSphere 4.0 installation settings"> <table> <tr> <th>Property</th> @@ -14,171 +14,205 @@ <th>Description</th> </tr> <tr> - <td>maven.was40.node</td> + <td>maven.was40.appserver</td> <td>Yes</td> <td> <p>Default value is - <code>NodeName</code>.</p> + <code>Default Server</code>.</p> </td> </tr> <tr> - <td>maven.was40.wscpExe</td> + <td>maven.was40.bin</td> <td>Yes</td> <td> <p>Default value is - <code>${maven.was40.bin}/wscp</code>.</p> + <code>${maven.was40.home}/bin</code>.</p> </td> </tr> <tr> - <td>maven.was40.appserver</td> + <td>maven.was40.home</td> <td>Yes</td> <td> <p>Default value is - <code>Default Server</code>.</p> + <code>C:/WebSphere/AppServer</code>.</p> </td> </tr> <tr> - <td>maven.was40.enterprise.app.name</td> + <td>maven.was40.hostPort</td> <td>Yes</td> <td> - <p>Default value is - <code>EnterpriseAppName</code>.</p> + <p>The port that the server is listening on for IIOP. Default value is + <code>900</code>. + </p> </td> </tr> <tr> - <td>maven.was40.stopNode</td> + <td>maven.was40.node</td> <td>Yes</td> <td> - <p>Default value is - <code>${maven.was40.cmd.node} stop {/${maven.was40.cmd.node}:${maven.was40.node}/}</code>.</p> + <p>Default value is <code>localhost</code>.</p> </td> </tr> <tr> - <td>maven.was40.cmd.serverGroup</td> + <td>maven.was40.serverGroup.name</td> <td>Yes</td> <td> <p>Default value is - <code>ServerGroup</code>.</p> + <code>ServerGroupName</code>.</p> </td> </tr> + </table> + </section> + <section name="Enterprise App Settings"> + <table> <tr> - <td>maven.was40.home</td> + <th>Property</th> + <th>Optional?</th> + <th>Description</th> + </tr> + <tr> + <td>maven.was40.enterprise.app.name</td> <td>Yes</td> <td> - <p>Default value is - <code>C:/WebSphere/AppServer</code>.</p> + <p>This is the name of the enterprise app i.e. MyApp</p> + <p>Default value is <code>EnterpriseAppName</code>.</p> </td> </tr> <tr> - <td>maven.was40.bin</td> + <td>maven.was40.enterprise.app</td> <td>Yes</td> <td> - <p>Default value is - <code>${maven.was40.home}/bin</code>.</p> + <p>This is the file name of the EAR file. Default value is + <code>EnterpriseApp.ear</code>. + </p> </td> </tr> <tr> - <td>maven.was40.cmd.node</td> + <td>maven.was40.sleep.start</td> <td>Yes</td> <td> - <p>Default value is - <code>Node</code>.</p> + <p> + How long to sleep in seconds after starting an app during reinstall. + Defaults to <code>60</code>. + </p> </td> </tr> <tr> - <td>maven.was40.appserver.stop</td> + <td>maven.was40.sleep.stop</td> <td>Yes</td> <td> - <p>Default value is - <code>${maven.was40.cmd.appserver} stop {/${maven.was40.cmd.node}:${maven.was40.node}/${maven.was40.cmd.appserver}:${maven.was40.appserver}/}</code>.</p> + <p> + How long to sleep in seconds after stopping an app during reinstall. + Defaults to <code>30</code>. + </p> </td> </tr> + </table> + </section> + <section name="Generate EJB Code Settings"> + <table> <tr> - <td>maven.was40.cmd.enterprise</td> + <th>Property</th> + <th>Optional?</th> + <th>Description</th> + </tr> + <tr> + <td>maven.was40.ejb.deployOptions</td> <td>Yes</td> <td> - <p>Default value is - <code>EnterpriseApp</code>.</p> + Other options to pass to the <code>ejbdeploy</code> tool. See the help + for <code>ejbdeploy</code> for more detail. One examples is <code>-novalidate</code>. </td> </tr> <tr> - <td>maven.was40.servergroup.install</td> + <td>maven.was40.ejb.file</td> <td>Yes</td> <td> - <p>Default value is - <code>${maven.was40.cmd.enterprise} install {/${maven.was40.cmd.node}:${maven.was40.node}/} ${maven.was40.enterprise.app} -appname {${maven.was40.enterprise.app.name}} -defappserver {/${maven.was40.cmd.serverGroup}:${maven.was40.serverGroup.name}/}</code>.</p> + The input file for generating ejb code. + Defaults to <code>${maven.build.dir}/${maven.final.name}.jar</code>, which is + the same name as the jar created by the <code>ejb</code> plugin. </td> </tr> <tr> - <td>maven.was40.servergroup.start</td> + <td>maven.was40.ejb.generateCode</td> <td>Yes</td> <td> - <p>Default value is - <code>${maven.was40.cmd.serverGroup} start {/${maven.was40.cmd.serverGroup}:${maven.was40.serverGroup.name}/}</code>.</p> + Whether or not to automatically generate code as part of the + <code>ejb:ejb</code> goal. + Defaults to blank, which means that code is <b>NOT</b> generated. </td> </tr> <tr> - <td>maven.was40.appserver.start</td> + <td>maven.was40.ejb.out.file</td> <td>Yes</td> <td> - <p>Default value is - <code>${maven.was40.cmd.appserver} start {/${maven.was40.cmd.node}:${maven.was40.node}/${maven.was40.cmd.appserver}:${maven.was40.appserver}/}</code>.</p> + The output file from generating ejb code. + Defaults to <code>${maven.build.dir}/was40/${maven.final.name}.jar</code>. </td> </tr> <tr> - <td>maven.was40.serverGroup.name</td> + <td>maven.was40.workingDir</td> <td>Yes</td> <td> - <p>Default value is - <code>ServerGroupName</code>.</p> + The directory where the ejb deploy tool writes its temporary files. + Defaults to <code>${maven.build.dir}/was40</code> </td> </tr> + </table> + </section> + <section name="WSCP Command Settings"> + <table> <tr> - <td>maven.was40.startNode</td> + <th>Property</th> + <th>Optional?</th> + <th>Description</th> + </tr> + <tr> + <td>maven.was40.appserver.start</td> <td>Yes</td> <td> <p>Default value is - <code>${maven.was40.bin}/startupServer</code>.</p> + <code>${maven.was40.cmd.appserver} start {/${maven.was40.cmd.node}:${maven.was40.node}/${maven.was40.cmd.appserver}:${maven.was40.appserver}/}</code>.</p> </td> </tr> <tr> - <td>maven.was40.cmd.appserver</td> + <td>maven.was40.appserver.stop</td> <td>Yes</td> <td> <p>Default value is - <code>ApplicationServer</code>.</p> + <code>${maven.was40.cmd.appserver} stop {/${maven.was40.cmd.node}:${maven.was40.node}/${maven.was40.cmd.appserver}:${maven.was40.appserver}/}</code>.</p> </td> </tr> <tr> - <td>maven.was40.wscpArgs</td> + <td>maven.was40.cmd.appserver</td> <td>Yes</td> <td> <p>Default value is - <code>-c</code>.</p> + <code>ApplicationServer</code>.</p> </td> </tr> <tr> - <td>maven.was40.startApp</td> + <td>maven.was40.cmd.enterprise</td> <td>Yes</td> <td> <p>Default value is - <code>${maven.was40.cmd.enterprise} start {/${maven.was40.cmd.enterprise}:${maven.was40.enterprise.app.name}/}</code>.</p> + <code>EnterpriseApp</code>.</p> </td> </tr> <tr> - <td>maven.was40.stopApp</td> + <td>maven.was40.cmd.node</td> <td>Yes</td> <td> <p>Default value is - <code>${maven.was40.cmd.enterprise} stop {/${maven.was40.cmd.enterprise}:${maven.was40.enterprise.app.name}/} -force</code>.</p> + <code>Node</code>.</p> </td> </tr> <tr> - <td>maven.was40.servergroup.stop</td> + <td>maven.was40.cmd.serverGroup</td> <td>Yes</td> <td> <p>Default value is - <code>${maven.was40.cmd.serverGroup} stop {/${maven.was40.cmd.serverGroup}:${maven.was40.serverGroup.name}/}</code>.</p> + <code>ServerGroup</code>.</p> </td> </tr> <tr> @@ -198,11 +232,11 @@ </td> </tr> <tr> - <td>maven.was40.enterprise.app</td> + <td>maven.was40.servergroup.install</td> <td>Yes</td> <td> <p>Default value is - <code>EnterpriseApp</code>.</p> + <code>${maven.was40.cmd.enterprise} install {/${maven.was40.cmd.node}:${maven.was40.node}/} ${maven.was40.enterprise.app} -appname {${maven.was40.enterprise.app.name}} -defappserver {/${maven.was40.cmd.serverGroup}:${maven.was40.serverGroup.name}/}</code>.</p> </td> </tr> <tr> @@ -222,62 +256,75 @@ </td> </tr> <tr> - <td>maven.was40.removeApp</td> + <td>maven.was40.servergroup.start</td> <td>Yes</td> <td> <p>Default value is - <code>${maven.was40.cmd.enterprise} remove {/${maven.was40.cmd.enterprise}:${maven.was40.enterprise.app.name}/} -recursive</code>.</p> + <code>${maven.was40.cmd.serverGroup} start {/${maven.was40.cmd.serverGroup}:${maven.was40.serverGroup.name}/}</code>.</p> </td> </tr> - </table> - </section> - <section name="Generate EJB Code Settings"> - <table> <tr> - <th>Property</th> - <th>Optional?</th> - <th>Description</th> + <td>maven.was40.servergroup.stop</td> + <td>Yes</td> + <td> + <p>Default value is + <code>${maven.was40.cmd.serverGroup} stop {/${maven.was40.cmd.serverGroup}:${maven.was40.serverGroup.name}/}</code>.</p> + </td> </tr> <tr> - <td>maven.was40.ejb.deployOptions</td> + <td>maven.was40.startApp</td> <td>Yes</td> <td> - Other options to pass to the <code>ejbdeploy</code> tool. See the help - for <code>ejbdeploy</code> for more detail. One examples is <code>-novalidate</code>. + <p>Default value is + <code>${maven.was40.cmd.enterprise} start {/${maven.was40.cmd.enterprise}:${maven.was40.enterprise.app.name}/}</code>.</p> </td> </tr> <tr> - <td>maven.was40.ejb.file</td> + <td>maven.was40.stopApp</td> <td>Yes</td> <td> - The input file for generating ejb code. - Defaults to <code>${maven.build.dir}/${maven.final.name}.jar</code>, which is - the same name as the jar created by the <code>ejb</code> plugin. + <p>Default value is + <code>${maven.was40.cmd.enterprise} stop {/${maven.was40.cmd.enterprise}:${maven.was40.enterprise.app.name}/} -force</code>.</p> </td> </tr> <tr> - <td>maven.was40.ejb.generateCode</td> + <td>maven.was40.stopNode</td> <td>Yes</td> <td> - Whether or not to automatically generate code as part of the - <code>ejb:ejb</code> goal. - Defaults to blank, which means that code is <b>NOT</b> generated. + <p>Default value is + <code>${maven.was40.cmd.node} stop {/${maven.was40.cmd.node}:${maven.was40.node}/}</code>.</p> </td> </tr> <tr> - <td>maven.was40.ejb.out.file</td> + <td>maven.was40.removeApp</td> <td>Yes</td> <td> - The output file from generating ejb code. - Defaults to <code>${maven.build.dir}/was40/${maven.final.name}.jar</code>. + <p>Default value is + <code>${maven.was40.cmd.enterprise} remove {/${maven.was40.cmd.enterprise}:${maven.was40.enterprise.app.name}/} -recursive</code>.</p> </td> </tr> <tr> - <td>maven.was40.workingDir</td> + <td>maven.was40.startNode</td> <td>Yes</td> <td> - The directory where the ejb deploy tool writes its temporary files. - Defaults to <code>${maven.build.dir}/was40</code> + <p>Default value is + <code>${maven.was40.bin}/startupServer</code>.</p> + </td> + </tr> + <tr> + <td>maven.was40.wscpArgs</td> + <td>Yes</td> + <td> + <p>Default value is + <code>-c</code>.</p> + </td> + </tr> + <tr> + <td>maven.was40.wscpExe</td> + <td>Yes</td> + <td> + <p>Default value is + <code>${maven.was40.bin}/wscp</code>.</p> </td> </tr> </table> |
From: dion g. <dio...@us...> - 2004-07-18 13:42:01
|
diongillard 04/07/18 06:41:54 Modified: was40 project.xml Log: Fix kristen's email address Revision Changes Path 1.13 +1 -1 maven-plugins/was40/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was40/project.xml,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- project.xml 13 Jul 2004 06:42:43 -0000 1.12 +++ project.xml 18 Jul 2004 13:41:54 -0000 1.13 @@ -49,7 +49,7 @@ <developer> <name>Kristen Gillard</name> <id>giLBy</id> - <email>kr...@mu...</email> + <email>kri...@mu...</email> <organization>Multitask Consulting</organization> <roles> <role>Developer</role> |
From: dion g. <dio...@us...> - 2004-07-18 13:36:42
|
diongillard 04/07/18 06:36:36 Modified: was40 plugin.properties Log: Give properties for the ear file name a more logical default Add sleep properties for reinstall Revision Changes Path 1.6 +6 -1 maven-plugins/was40/plugin.properties Index: plugin.properties =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was40/plugin.properties,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- plugin.properties 18 Mar 2004 22:03:51 -0000 1.5 +++ plugin.properties 18 Jul 2004 13:36:36 -0000 1.6 @@ -9,7 +9,7 @@ maven.was40.home=C:/WebSphere/AppServer maven.was40.bin=${maven.was40.home}/bin maven.was40.wscpExe=${maven.was40.bin}/wscp -maven.was40.enterprise.app=EnterpriseApp +maven.was40.enterprise.app=EnterpriseApp.ear maven.was40.enterprise.app.name=EnterpriseAppName maven.was40.appserver=Default\ Server maven.was40.serverGroup.name=ServerGroupName @@ -76,6 +76,11 @@ ############################### Do not put these in "Quotes" ############################### +# +# reinstall sleep properties +# +maven.was40.sleep.start=60 +maven.was40.sleep.stop=30 # # ejb-related properties |
From: dion g. <dio...@us...> - 2004-07-18 13:35:11
|
diongillard 04/07/18 06:35:04 Modified: was40 plugin.jelly Log: Rename deploy-ear to app-install Rename undeploy-ear to app-remove Add app-reinstall goal Revision Changes Path 1.13 +28 -1 maven-plugins/was40/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was40/plugin.jelly,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- plugin.jelly 13 Jul 2004 06:40:42 -0000 1.12 +++ plugin.jelly 18 Jul 2004 13:35:04 -0000 1.13 @@ -89,7 +89,14 @@ </goal> <goal name="was40:deploy-ear" description="Deploy an enterprise application"> - <echo>Deploying enterprise application: '${maven.was40.enterprise.app.name}'</echo> + <echo>DEPRECATED: Please use was40:app-install</echo> + <attainGoal name="was40:app-deploy"/> + </goal> + + <goal name="was40:app-install" description="Deploy an enterprise application"> + <echo>Deploying enterprise application: '${maven.was40.enterprise.app.name}' from file: '${maven.was40.enterprise.app.name}' +on application server: '${maven.was40.appserver}' +</echo> <was40wscp:exec command="${maven.was40.deployApp}" /> </goal> @@ -99,6 +106,11 @@ </goal> <goal name="was40:undeploy-ear" description="Remove an enterprise application"> + <echo>DEPRECATED: Please use was40:app-remove</echo> + <attainGoal name="was40:app-remove"/> + </goal> + + <goal name="was40:app-remove" description="Remove an enterprise application"> <echo>Removing enterprise application: '${maven.was40.enterprise.app.name}'</echo> <was40wscp:exec command="${maven.was40.removeApp}" /> </goal> @@ -210,4 +222,19 @@ <copy file="${maven.was40.ejb.out.file}" tofile="${maven.was40.ejb.file}"/> </j:if> </postGoal> + + <!-- reinstall an enterprise app --> + <goal name="was40:app-reinstall"> + <attainGoal name="was40:app-stop"/> + <sleep seconds="${maven.was40.sleep.stop}"/> + <attainGoal name="was40:stop-appserver"/> + <sleep seconds="${maven.was40.sleep.stop}"/> + <attainGoal name="was40:undeploy-ear"/> + <sleep seconds="${maven.was40.sleep.stop}"/> + <attainGoal name="was40:deploy-ear"/> + <attainGoal name="was40:start-appserver"/> + <sleep seconds="${maven.was40.sleep.start}"/> + <attainGoal name="was40:app-start"/> + <sleep seconds="${maven.was40.sleep.start}"/> + </goal> </project> \ No newline at end of file |