From: dion g. <dio...@us...> - 2004-07-28 15:20:23
|
diongillard 04/07/28 08:20:17 Modified: was5/xdocs changes.xml Log: updates Revision Changes Path 1.2 +7 -2 maven-plugins/was5/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/xdocs/changes.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- changes.xml 9 Mar 2004 11:36:25 -0000 1.1 +++ changes.xml 28 Jul 2004 15:20:17 -0000 1.2 @@ -1,10 +1,15 @@ -<?xml version="1.0"?> +<?xml version="1.0" encoding="UTF-8"?> + <document> <properties> <title>Changes</title> + <author email="dio...@us...">dIon Gillard</author> </properties> - <body> + <release version="1.0" date="2004-07-28"> + <action dev="diongillard" type="add">Add reinstallApp goal</action> + <action dev="rlewisshell" type="add">Create goals that use the Websphere supplied ant tasks</action> + </release> </body> </document> |
From: dion g. <dio...@us...> - 2004-07-30 05:13:40
|
diongillard 04/07/29 22:13:31 Modified: was5 plugin.jelly was5/xdocs changes.xml Log: Check maven.was5.home exists before using Revision Changes Path 1.4 +19 -10 maven-plugins/was5/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/plugin.jelly,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- plugin.jelly 30 Jul 2004 03:50:57 -0000 1.3 +++ plugin.jelly 30 Jul 2004 05:13:31 -0000 1.4 @@ -1,10 +1,11 @@ -<project default="serverStatus" xmlns:j="jelly:core" - xmlns:ant="jelly:ant"> - - <!-- TODO: Add a check to make sure maven.was5.home is a valid directory --> +<project default="serverStatus" + xmlns:j="jelly:core" + xmlns:ant="jelly:ant" + xmlns:assert="assert"> <!-- generate deployment and rmic code for an ejb jar --> <goal name="was5:ejbDeploy" description="Generate deployment and RMIC code for an ejb jar"> + <assert:assertFileExists file="${maven.was5.home}"/> <!-- clean up working dir --> <delete dir="${maven.was5.ejbDeploy.workingdir}" failonerror="false"/> <mkdir dir="${maven.was5.ejbDeploy.workingdir}"/> @@ -46,7 +47,8 @@ </postGoal> <goal name="was5:startServer" description="Start a WebSphere Appserver"> - <ant:fail unless="maven.was5.startServer.server">maven.was.startServer.server must be specified (specifying maven.was5.server is sufficient)</ant:fail> + <ant:fail unless="maven.was5.startServer.server">maven.was5.startServer.server must be specified (specifying maven.was5.server is sufficient)</ant:fail> + <assert:assertFileExists file="${maven.was5.home}"/> <taskdef name="wasStartServer" classname="com.ibm.websphere.ant.tasks.StartServer" classpath="${maven.was5.home}/lib/wsanttasks.jar"/> <ant:wasStartServer server="${maven.was5.startServer.server}"> @@ -67,7 +69,8 @@ </goal> <goal name="was5:stopServer" description="Stop a WebSphere Appserver"> - <ant:fail unless="maven.was5.stopServer.server">maven.was.stopServer.server must be specified (specifying maven.was5.server is sufficient)</ant:fail> + <ant:fail unless="maven.was5.stopServer.server">maven.was5.stopServer.server must be specified (specifying maven.was5.server is sufficient)</ant:fail> + <assert:assertFileExists file="${maven.was5.home}"/> <taskdef name="wasStopServer" classname="com.ibm.websphere.ant.tasks.StopServer" classpath="${maven.was5.home}/lib/wsanttasks.jar"/> <ant:wasStopServer server="${maven.was5.stopServer.server}"> @@ -90,7 +93,8 @@ </goal> <goal name="was5:serverStatus" description="Show the status of a WebSphere Appserver"> - <ant:fail unless="maven.was5.serverStatus.server">maven.was.serverStatus.server must be specified (specifying maven.was5.server is sufficient)</ant:fail> + <ant:fail unless="maven.was5.serverStatus.server">maven.was5.serverStatus.server must be specified (specifying maven.was5.server is sufficient)</ant:fail> + <assert:assertFileExists file="${maven.was5.home}"/> <taskdef name="wasServerStatus" classname="com.ibm.websphere.ant.tasks.ServerStatus" classpath="${maven.was5.home}/lib/wsanttasks.jar"/> <ant:wasServerStatus server="${maven.was5.serverStatus.server}"> @@ -107,6 +111,7 @@ </goal> <goal name="was5:listApps" description="List applications installed on a WebSphere Appserver"> + <assert:assertFileExists file="${maven.was5.home}"/> <taskdef name="wasListApps" classname="com.ibm.websphere.ant.tasks.ListApplications" classpath="${maven.was5.home}/lib/wsanttasks.jar"/> <ant:wasListApps> <ant:setProperty name="profile" value="${maven.was5.listApps.profile}"/> @@ -123,6 +128,7 @@ <goal name="was5:installApp" description="Install an application on a WebSphere Appserver"> <ant:fail unless="maven.was5.installApp.ear">maven.was5.installApp.ear must be specified</ant:fail> + <assert:assertFileExists file="${maven.was5.home}"/> <taskdef name="wasInstallApp" classname="com.ibm.websphere.ant.tasks.InstallApplication" classpath="${maven.was5.home}/lib/wsanttasks.jar"/> <ant:wasInstallApp ear="${maven.was5.installApp.ear}"> @@ -138,7 +144,8 @@ </goal> <goal name="was5:uninstallApp" description="Uninstall an application on a WebSphere Appserver"> - <ant:fail unless="maven.was5.uninstallApp.application">maven.was.uninstallApp.application must be specified</ant:fail> + <ant:fail unless="maven.was5.uninstallApp.application">maven.was5.uninstallApp.application must be specified</ant:fail> + <assert:assertFileExists file="${maven.was5.home}"/> <taskdef name="wasUninstallApp" classname="com.ibm.websphere.ant.tasks.UninstallApplication" classpath="${maven.was5.home}/lib/wsanttasks.jar"/> <ant:wasUninstallApp application="${maven.was5.uninstallApp.application}"> @@ -154,7 +161,8 @@ </goal> <goal name="was5:startApp" description="Start an installed application on a WebSphere Appserver"> - <ant:fail unless="maven.was5.startApp.application">maven.was.startApp.application must be specified</ant:fail> + <ant:fail unless="maven.was5.startApp.application">maven.was5.startApp.application must be specified</ant:fail> + <assert:assertFileExists file="${maven.was5.home}"/> <taskdef name="wasStartApp" classname="com.ibm.websphere.ant.tasks.StartApplication" classpath="${maven.was5.home}/lib/wsanttasks.jar"/> <ant:wasStartApp application="${maven.was5.startApp.application}"> @@ -173,7 +181,8 @@ </goal> <goal name="was5:stopApp" description="Stop an installed application on a WebSphere Appserver"> - <ant:fail unless="maven.was5.stopApp.application">maven.was.stopApp.application must be specified</ant:fail> + <ant:fail unless="maven.was5.stopApp.application">maven.was5.stopApp.application must be specified</ant:fail> + <assert:assertFileExists file="${maven.was5.home}"/> <taskdef name="wasStopApp" classname="com.ibm.websphere.ant.tasks.StopApplication" classpath="${maven.was5.home}/lib/wsanttasks.jar"/> <ant:wasStopApp application="${maven.was5.stopApp.application}"> 1.3 +3 -1 maven-plugins/was5/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/xdocs/changes.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- changes.xml 28 Jul 2004 15:20:17 -0000 1.2 +++ changes.xml 30 Jul 2004 05:13:31 -0000 1.3 @@ -6,11 +6,13 @@ <author email="dio...@us...">dIon Gillard</author> </properties> <body> + <release version="1.1-SNAPSHOT" date="in CVS"> + <action dev="diongillard" type="fix">Check ${maven.was5.home} exists before using</action> + </release> <release version="1.0" date="2004-07-28"> <action dev="diongillard" type="add">Add reinstallApp goal</action> <action dev="rlewisshell" type="add">Create goals that use the Websphere supplied ant tasks</action> </release> - </body> </document> |
From: dion g. <dio...@us...> - 2004-07-30 05:28:46
|
diongillard 04/07/29 22:28:40 Modified: was5 plugin.jelly was5/xdocs changes.xml Log: Check maven.was5.home exists before using Revision Changes Path 1.5 +21 -10 maven-plugins/was5/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/plugin.jelly,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- plugin.jelly 30 Jul 2004 05:13:31 -0000 1.4 +++ plugin.jelly 30 Jul 2004 05:28:40 -0000 1.5 @@ -1,11 +1,13 @@ <project default="serverStatus" xmlns:j="jelly:core" xmlns:ant="jelly:ant" - xmlns:assert="assert"> + xmlns:assert="assert" + xmlns:maven="jelly:maven"> <!-- generate deployment and rmic code for an ejb jar --> <goal name="was5:ejbDeploy" description="Generate deployment and RMIC code for an ejb jar"> - <assert:assertFileExists file="${maven.was5.home}"/> + <maven:paramCheck fail="yes" value="${maven.was5.home}" message="ERROR: maven.was5.home is not set"/> + <assert:assertFileExists file="${maven.was5.home}" msg=" ERROR: maven.was5.home is not a valid directory"/> <!-- clean up working dir --> <delete dir="${maven.was5.ejbDeploy.workingdir}" failonerror="false"/> <mkdir dir="${maven.was5.ejbDeploy.workingdir}"/> @@ -48,7 +50,8 @@ <goal name="was5:startServer" description="Start a WebSphere Appserver"> <ant:fail unless="maven.was5.startServer.server">maven.was5.startServer.server must be specified (specifying maven.was5.server is sufficient)</ant:fail> - <assert:assertFileExists file="${maven.was5.home}"/> + <maven:paramCheck fail="yes" value="${maven.was5.home}" message="ERROR: maven.was5.home is not set"/> + <assert:assertFileExists file="${maven.was5.home}" msg=" ERROR: maven.was5.home is not a valid directory"/> <taskdef name="wasStartServer" classname="com.ibm.websphere.ant.tasks.StartServer" classpath="${maven.was5.home}/lib/wsanttasks.jar"/> <ant:wasStartServer server="${maven.was5.startServer.server}"> @@ -69,8 +72,9 @@ </goal> <goal name="was5:stopServer" description="Stop a WebSphere Appserver"> + <maven:paramCheck fail="yes" value="${maven.was5.home}" message="ERROR: maven.was5.home is not set"/> <ant:fail unless="maven.was5.stopServer.server">maven.was5.stopServer.server must be specified (specifying maven.was5.server is sufficient)</ant:fail> - <assert:assertFileExists file="${maven.was5.home}"/> + <assert:assertFileExists file="${maven.was5.home}" msg=" ERROR: maven.was5.home is not a valid directory"/> <taskdef name="wasStopServer" classname="com.ibm.websphere.ant.tasks.StopServer" classpath="${maven.was5.home}/lib/wsanttasks.jar"/> <ant:wasStopServer server="${maven.was5.stopServer.server}"> @@ -94,7 +98,8 @@ <goal name="was5:serverStatus" description="Show the status of a WebSphere Appserver"> <ant:fail unless="maven.was5.serverStatus.server">maven.was5.serverStatus.server must be specified (specifying maven.was5.server is sufficient)</ant:fail> - <assert:assertFileExists file="${maven.was5.home}"/> + <maven:paramCheck fail="yes" value="${maven.was5.home}" message="ERROR: maven.was5.home is not set"/> + <assert:assertFileExists file="${maven.was5.home}" msg=" ERROR: maven.was5.home is not a valid directory"/> <taskdef name="wasServerStatus" classname="com.ibm.websphere.ant.tasks.ServerStatus" classpath="${maven.was5.home}/lib/wsanttasks.jar"/> <ant:wasServerStatus server="${maven.was5.serverStatus.server}"> @@ -111,7 +116,9 @@ </goal> <goal name="was5:listApps" description="List applications installed on a WebSphere Appserver"> - <assert:assertFileExists file="${maven.was5.home}"/> + <maven:paramCheck fail="yes" value="${maven.was5.home}" message="ERROR: maven.was5.home is not set"/> + <assert:assertFileExists file="${maven.was5.home}" msg=" ERROR: maven.was5.home is not a valid directory"/> + <taskdef name="wasListApps" classname="com.ibm.websphere.ant.tasks.ListApplications" classpath="${maven.was5.home}/lib/wsanttasks.jar"/> <ant:wasListApps> <ant:setProperty name="profile" value="${maven.was5.listApps.profile}"/> @@ -128,7 +135,8 @@ <goal name="was5:installApp" description="Install an application on a WebSphere Appserver"> <ant:fail unless="maven.was5.installApp.ear">maven.was5.installApp.ear must be specified</ant:fail> - <assert:assertFileExists file="${maven.was5.home}"/> + <maven:paramCheck fail="yes" value="${maven.was5.home}" message="ERROR: maven.was5.home is not set"/> + <assert:assertFileExists file="${maven.was5.home}" msg=" ERROR: maven.was5.home is not a valid directory"/> <taskdef name="wasInstallApp" classname="com.ibm.websphere.ant.tasks.InstallApplication" classpath="${maven.was5.home}/lib/wsanttasks.jar"/> <ant:wasInstallApp ear="${maven.was5.installApp.ear}"> @@ -145,7 +153,8 @@ <goal name="was5:uninstallApp" description="Uninstall an application on a WebSphere Appserver"> <ant:fail unless="maven.was5.uninstallApp.application">maven.was5.uninstallApp.application must be specified</ant:fail> - <assert:assertFileExists file="${maven.was5.home}"/> + <maven:paramCheck fail="yes" value="${maven.was5.home}" message="ERROR: maven.was5.home is not set"/> + <assert:assertFileExists file="${maven.was5.home}" msg=" ERROR: maven.was5.home is not a valid directory"/> <taskdef name="wasUninstallApp" classname="com.ibm.websphere.ant.tasks.UninstallApplication" classpath="${maven.was5.home}/lib/wsanttasks.jar"/> <ant:wasUninstallApp application="${maven.was5.uninstallApp.application}"> @@ -162,7 +171,8 @@ <goal name="was5:startApp" description="Start an installed application on a WebSphere Appserver"> <ant:fail unless="maven.was5.startApp.application">maven.was5.startApp.application must be specified</ant:fail> - <assert:assertFileExists file="${maven.was5.home}"/> + <maven:paramCheck fail="yes" value="${maven.was5.home}" message="ERROR: maven.was5.home is not set"/> + <assert:assertFileExists file="${maven.was5.home}" msg=" ERROR: maven.was5.home is not a valid directory"/> <taskdef name="wasStartApp" classname="com.ibm.websphere.ant.tasks.StartApplication" classpath="${maven.was5.home}/lib/wsanttasks.jar"/> <ant:wasStartApp application="${maven.was5.startApp.application}"> @@ -182,7 +192,8 @@ <goal name="was5:stopApp" description="Stop an installed application on a WebSphere Appserver"> <ant:fail unless="maven.was5.stopApp.application">maven.was5.stopApp.application must be specified</ant:fail> - <assert:assertFileExists file="${maven.was5.home}"/> + <maven:paramCheck fail="yes" value="${maven.was5.home}" message="ERROR: maven.was5.home is not set"/> + <assert:assertFileExists file="${maven.was5.home}" msg=" ERROR: maven.was5.home is not a valid directory"/> <taskdef name="wasStopApp" classname="com.ibm.websphere.ant.tasks.StopApplication" classpath="${maven.was5.home}/lib/wsanttasks.jar"/> <ant:wasStopApp application="${maven.was5.stopApp.application}"> 1.4 +1 -0 maven-plugins/was5/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/xdocs/changes.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- changes.xml 30 Jul 2004 05:13:31 -0000 1.3 +++ changes.xml 30 Jul 2004 05:28:40 -0000 1.4 @@ -7,6 +7,7 @@ </properties> <body> <release version="1.1-SNAPSHOT" date="in CVS"> + <action dev="diongillard" type="fix">Check ${maven.was5.home} is specified before using</action> <action dev="diongillard" type="fix">Check ${maven.was5.home} exists before using</action> </release> <release version="1.0" date="2004-07-28"> |
From: dion g. <dio...@us...> - 2004-08-01 23:27:51
|
diongillard 04/08/01 16:27:45 Modified: was5 project.xml was5/xdocs changes.xml Log: [maven-scm-plugin] prepare release 1.1 Revision Changes Path 1.8 +14 -5 maven-plugins/was5/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/project.xml,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- project.xml 29 Jul 2004 05:11:04 -0000 1.7 +++ project.xml 1 Aug 2004 23:27:45 -0000 1.8 @@ -1,36 +1,45 @@ -<?xml version="1.0" ?> +<?xml version="1.0" encoding="UTF-8"?> + <project> <extend>${basedir}/../plugin-project.xml</extend> <!--pomVersion is in parent --> + <id>maven-was5-plugin</id> <name>WebSphere 5 (5.0/5.1) Plugin</name> <!-- groupId is in parent --> - <currentVersion>1.1-SNAPSHOT</currentVersion> + + <currentVersion>1.1</currentVersion> <!-- organization is in parent --> + <inceptionYear>2004</inceptionYear> <!-- package, logo are in parent. no gumpRepositoryId --> + <description>A plugin to manage a WebSphere AppServer 5/5.1 artifacts and installation</description> <shortDescription>Manage WAS 5/5.1</shortDescription> <!-- issue tracking url, siteAddress are in parent --> + <url>http://maven-plugins.sourceforge.net/maven-was5-plugin/</url> <siteDirectory>/home/groups/m/ma/maven-plugins/htdocs/maven-was5-plugin/</siteDirectory> <distributionDirectory>/home/groups/m/ma/maven-plugins/htdocs/maven-was5-plugin/distributions/</distributionDirectory> - <repository> <connection>scm:cvs:pserver:ano...@cv...:/cvsroot/maven-plugins:maven-plugins/was5</connection> <developerConnection>scm:cvs:ext:${maven.username}@cvs.sourceforge.net:/cvsroot/maven-plugins:maven-plugins/was5</developerConnection> <url>http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/maven-plugins/maven-plugins/was5/</url> </repository> - <versions> <version> <id>1.0</id> <name>1.0</name> <tag>MAVEN_PLUGINS_WAS5_1_0</tag> </version> + <version> + <id>1.1</id> + <name>1.1</name> + <tag>MAVEN_PLUGINS_WAS5_1_1</tag> + </version> </versions> + <!-- mailingLists are in parent --> - <!-- mailingLists are in parent --> <developers> <developer> <id>rlewisshell</id> 1.6 +1 -2 maven-plugins/was5/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/xdocs/changes.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- changes.xml 30 Jul 2004 06:11:14 -0000 1.5 +++ changes.xml 1 Aug 2004 23:27:45 -0000 1.6 @@ -6,7 +6,7 @@ <author email="dio...@us...">dIon Gillard</author> </properties> <body> - <release version="1.1-SNAPSHOT" date="in CVS"> + <release version="1.1" date="2004-08-02"> <action dev="diongillard" type="add">Add was5:run-script goal</action> <action dev="diongillard" type="fix">Check ${maven.was5.home} is specified before using</action> <action dev="diongillard" type="fix">Check ${maven.was5.home} exists before using</action> @@ -17,4 +17,3 @@ </release> </body> </document> - |
From: dion g. <dio...@us...> - 2004-08-04 07:16:34
|
diongillard 04/08/04 00:16:28 Modified: was5/xdocs changes.xml Log: Doc change Revision Changes Path 1.7 +3 -0 maven-plugins/was5/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/xdocs/changes.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- changes.xml 1 Aug 2004 23:27:45 -0000 1.6 +++ changes.xml 4 Aug 2004 07:16:28 -0000 1.7 @@ -6,6 +6,9 @@ <author email="dio...@us...">dIon Gillard</author> </properties> <body> + <release version="1.2" date="in CVS"> + <action dev="diongillard" type="fix">Fix typo for ${maven.was5.ejbDeploy}. The code was checking ${maven.was5.ejbdeploy}</action> + </release> <release version="1.1" date="2004-08-02"> <action dev="diongillard" type="add">Add was5:run-script goal</action> <action dev="diongillard" type="fix">Check ${maven.was5.home} is specified before using</action> |
From: dion g. <dio...@us...> - 2004-08-04 07:39:54
|
diongillard 04/08/04 00:39:48 Modified: was5/xdocs changes.xml Log: Doc changes Revision Changes Path 1.8 +1 -0 maven-plugins/was5/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/xdocs/changes.xml,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- changes.xml 4 Aug 2004 07:16:28 -0000 1.7 +++ changes.xml 4 Aug 2004 07:39:48 -0000 1.8 @@ -8,6 +8,7 @@ <body> <release version="1.2" date="in CVS"> <action dev="diongillard" type="fix">Fix typo for ${maven.was5.ejbDeploy}. The code was checking ${maven.was5.ejbdeploy}</action> + <action dev="diongillard" type="fix">Check the ear exists before trying to install it.</action> </release> <release version="1.1" date="2004-08-02"> <action dev="diongillard" type="add">Add was5:run-script goal</action> |
From: dion g. <dio...@us...> - 2004-08-11 05:37:02
|
diongillard 04/08/10 22:36:55 Modified: was5/xdocs changes.xml Log: Add script args Revision Changes Path 1.9 +2 -1 maven-plugins/was5/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/xdocs/changes.xml,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- changes.xml 4 Aug 2004 07:39:48 -0000 1.8 +++ changes.xml 11 Aug 2004 05:36:55 -0000 1.9 @@ -6,7 +6,8 @@ <author email="dio...@us...">dIon Gillard</author> </properties> <body> - <release version="1.2" date="in CVS"> + <release version="1.2-SNAPSHOT" date="in CVS"> + <action dev="diongillard" type="add">Add ${maven.was5.script.args} to pass arguments to scripts</action> <action dev="diongillard" type="fix">Fix typo for ${maven.was5.ejbDeploy}. The code was checking ${maven.was5.ejbdeploy}</action> <action dev="diongillard" type="fix">Check the ear exists before trying to install it.</action> </release> |
From: dion g. <dio...@us...> - 2004-08-26 02:17:51
|
diongillard 04/08/25 19:17:44 Modified: was5/xdocs changes.xml Log: Fix property to correct value Revision Changes Path 1.10 +1 -0 maven-plugins/was5/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/xdocs/changes.xml,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- changes.xml 11 Aug 2004 05:36:55 -0000 1.9 +++ changes.xml 26 Aug 2004 02:17:44 -0000 1.10 @@ -7,6 +7,7 @@ </properties> <body> <release version="1.2-SNAPSHOT" date="in CVS"> + <action dev="diongillard" type="fix">username not being passed for the script goal correctly</action> <action dev="diongillard" type="add">Add ${maven.was5.script.args} to pass arguments to scripts</action> <action dev="diongillard" type="fix">Fix typo for ${maven.was5.ejbDeploy}. The code was checking ${maven.was5.ejbdeploy}</action> <action dev="diongillard" type="fix">Check the ear exists before trying to install it.</action> |
From: dion g. <dio...@us...> - 2004-08-27 03:14:33
|
diongillard 04/08/26 20:14:27 Modified: was5 project.xml was5/xdocs changes.xml Log: [maven-scm-plugin] prepare release 1.2 Revision Changes Path 1.10 +6 -1 maven-plugins/was5/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/project.xml,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- project.xml 4 Aug 2004 06:30:39 -0000 1.9 +++ project.xml 27 Aug 2004 03:14:25 -0000 1.10 @@ -8,7 +8,7 @@ <name>WebSphere 5 (5.0/5.1) Plugin</name> <!-- groupId is in parent --> - <currentVersion>1.2-SNAPSHOT</currentVersion> + <currentVersion>1.2</currentVersion> <!-- organization is in parent --> <inceptionYear>2004</inceptionYear> @@ -37,6 +37,11 @@ <name>1.1</name> <tag>MAVEN_PLUGINS_WAS5_1_1</tag> </version> + <version> + <id>1.2</id> + <name>1.2</name> + <tag>MAVEN_PLUGINS_WAS5_1_2</tag> + </version> </versions> <!-- mailingLists are in parent --> 1.11 +1 -1 maven-plugins/was5/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/xdocs/changes.xml,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- changes.xml 26 Aug 2004 02:17:44 -0000 1.10 +++ changes.xml 27 Aug 2004 03:14:26 -0000 1.11 @@ -6,7 +6,7 @@ <author email="dio...@us...">dIon Gillard</author> </properties> <body> - <release version="1.2-SNAPSHOT" date="in CVS"> + <release version="1.2" date="2004-08-27"> <action dev="diongillard" type="fix">username not being passed for the script goal correctly</action> <action dev="diongillard" type="add">Add ${maven.was5.script.args} to pass arguments to scripts</action> <action dev="diongillard" type="fix">Fix typo for ${maven.was5.ejbDeploy}. The code was checking ${maven.was5.ejbdeploy}</action> |
From: dion g. <dio...@us...> - 2004-08-27 05:48:34
|
diongillard 04/08/26 22:48:26 Modified: was5 plugin.jelly was5/xdocs changes.xml Log: Fix inconsistent user attribute Revision Changes Path 1.11 +5 -5 maven-plugins/was5/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/plugin.jelly,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- plugin.jelly 26 Aug 2004 02:15:38 -0000 1.10 +++ plugin.jelly 27 Aug 2004 05:48:26 -0000 1.11 @@ -127,7 +127,7 @@ <ant:setProperty name="conntype" value="${maven.was5.listApps.conntype}"/> <ant:setProperty name="host" value="${maven.was5.listApps.host}"/> <ant:setProperty name="port" value="${maven.was5.listApps.port}"/> - <ant:setProperty name="username" value="${maven.was5.listApps.username}"/> + <ant:setProperty name="user" value="${maven.was5.listApps.username}"/> <ant:setProperty name="password" value="${maven.was5.listApps.password}"/> <ant:setProperty name="wasHome" value="${maven.was5.home}"/> </ant:wasListApps> @@ -146,7 +146,7 @@ <ant:setProperty name="conntype" value="${maven.was5.installApp.conntype}"/> <ant:setProperty name="host" value="${maven.was5.installApp.host}"/> <ant:setProperty name="port" value="${maven.was5.installApp.port}"/> - <ant:setProperty name="username" value="${maven.was5.installApp.username}"/> + <ant:setProperty name="user" value="${maven.was5.installApp.username}"/> <ant:setProperty name="password" value="${maven.was5.installApp.password}"/> <ant:setProperty name="wasHome" value="${maven.was5.home}"/> </ant:wasInstallApp> @@ -164,7 +164,7 @@ <ant:setProperty name="conntype" value="${maven.was5.uninstallApp.conntype}"/> <ant:setProperty name="host" value="${maven.was5.uninstallApp.host}"/> <ant:setProperty name="port" value="${maven.was5.uninstallApp.port}"/> - <ant:setProperty name="username" value="${maven.was5.uninstallApp.username}"/> + <ant:setProperty name="user" value="${maven.was5.uninstallApp.username}"/> <ant:setProperty name="password" value="${maven.was5.uninstallApp.password}"/> <ant:setProperty name="wasHome" value="${maven.was5.home}"/> </ant:wasUninstallApp> @@ -185,7 +185,7 @@ <ant:setProperty name="conntype" value="${maven.was5.startApp.conntype}"/> <ant:setProperty name="host" value="${maven.was5.startApp.host}"/> <ant:setProperty name="port" value="${maven.was5.startApp.port}"/> - <ant:setProperty name="username" value="${maven.was5.startApp.username}"/> + <ant:setProperty name="user" value="${maven.was5.startApp.username}"/> <ant:setProperty name="password" value="${maven.was5.startApp.password}"/> <ant:setProperty name="wasHome" value="${maven.was5.home}"/> </ant:wasStartApp> @@ -207,7 +207,7 @@ <ant:setProperty name="conntype" value="${maven.was5.stopApp.conntype}"/> <ant:setProperty name="host" value="${maven.was5.stopApp.host}"/> <ant:setProperty name="port" value="${maven.was5.stopApp.port}"/> - <ant:setProperty name="username" value="${maven.was5.stopApp.username}"/> + <ant:setProperty name="user" value="${maven.was5.stopApp.username}"/> <ant:setProperty name="wasHome" value="${maven.was5.home}"/> </ant:wasStopApp> 1.12 +3 -0 maven-plugins/was5/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/xdocs/changes.xml,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- changes.xml 27 Aug 2004 03:14:26 -0000 1.11 +++ changes.xml 27 Aug 2004 05:48:26 -0000 1.12 @@ -6,6 +6,9 @@ <author email="dio...@us...">dIon Gillard</author> </properties> <body> + <release version="1.2.1-SNAPSHOT" date="in CVS"> + <action dev="diongillard" type="fix">username not being passed correctly</action> + </release> <release version="1.2" date="2004-08-27"> <action dev="diongillard" type="fix">username not being passed for the script goal correctly</action> <action dev="diongillard" type="add">Add ${maven.was5.script.args} to pass arguments to scripts</action> |
From: dion g. <dio...@us...> - 2005-06-23 18:03:17
|
diongillard 05/06/23 11:03:10 Modified: was5 plugin.jelly project.xml was5/xdocs changes.xml Added: was5/src/plugin-resources build.xml.jelly Log: Start of v2 of plugin - calling ws_ant directly. Revision Changes Path 1.1 maven-plugins/was5/src/plugin-resources/build.xml.jelly Index: build.xml.jelly =================================================================== <j:jelly xmlns:j="jelly:core" xmlns="dummy"> <project name="was5plugin" default="wasListApps"> <taskdef name="wasListApps" classname="com.ibm.websphere.ant.tasks.ListApplications" classpath="${maven.was5.home}/lib/wsanttasks.jar"/> <taskdef name="wasEjbDeploy" classname="com.ibm.websphere.ant.tasks.WsEjbDeploy" classpath="${maven.was5.home}/lib/wsanttasks.jar"/> <taskdef name="wasStopServer" classname="com.ibm.websphere.ant.tasks.StopServer" classpath="${maven.was5.home}/lib/wsanttasks.jar"/> <taskdef name="wasStartServer" classname="com.ibm.websphere.ant.tasks.StartServer" classpath="${maven.was5.home}/lib/wsanttasks.jar"/> <taskdef name="wasServerStatus" classname="com.ibm.websphere.ant.tasks.ServerStatus" classpath="${maven.was5.home}/lib/wsanttasks.jar"/> <taskdef name="wasInstallApp" classname="com.ibm.websphere.ant.tasks.InstallApplication" classpath="${maven.was5.home}/lib/wsanttasks.jar"/> <taskdef name="wasUninstallApp" classname="com.ibm.websphere.ant.tasks.UninstallApplication" classpath="${maven.was5.home}/lib/wsanttasks.jar"/> <taskdef name="wasStartApp" classname="com.ibm.websphere.ant.tasks.StartApplication" classpath="${maven.was5.home}/lib/wsanttasks.jar"/> <taskdef name="wasStopApp" classname="com.ibm.websphere.ant.tasks.StopApplication" classpath="${maven.was5.home}/lib/wsanttasks.jar"/> <target name="wasListApps"> <wasListApps profile="${maven.was5.listApps.profile}" properties="${maven.was5.listApps.properties}" conntype="${maven.was5.listApps.conntype}" host="${maven.was5.listApps.host}" port="${maven.was5.listApps.port}" user="${maven.was5.listApps.username}" password="${maven.was5.listApps.password}" wasHome="${maven.was5.home}" /> </target> <target name="wasEjbDeploy"> <wasEjbDeploy inputJar="${maven.was5.ejbDeploy.file}" workingDirectory="${maven.was5.ejbDeploy.workingdir}" outputJar="${maven.was5.ejbDeploy.file.out}" classpath="${mavenDependencyClasspath}" codegen="${maven.was5.ejbDeploy.codegen}" dbname="${maven.was5.ejbDeploy.dbname}" dbschema="${maven.was5.ejbDeploy.dbschema}" dbvendor="${maven.was5.ejbDeploy.dbvendor}" dynamic="${maven.was5.ejbDeploy.dynamic}" keepGenerated="${maven.was5.ejbDeploy.keepGenerated}" quiet="${maven.was5.ejbDeploy.quiet}" noValidate="${maven.was5.ejbDeploy.noValidate}" noWarnings="${maven.was5.ejbDeploy.noWarnings}" noInform="${maven.was5.ejbDeploy.noInform}" rmicOptions="${maven.was5.ejbDeploy.rmicOptions}" compatible35="${maven.was5.ejbDeploy.compatible35}" sqlj="${maven.was5.ejbDeploy.sqlj}" failonerror="${maven.was5.ejbDeploy.failonerror}" trace="${maven.was5.ejbDeploy.trace}" washome="${maven.was5.home}" /> </target> <target name="wasStopServer"> <wasStopServer server="${maven.was5.stopServer.server}" conntype="${maven.was5.stopServer.conntype}" host="${maven.was5.stopServer.host}" port="${maven.was5.stopServer.port}" timeout="${maven.was5.stopServer.timeout}" username="${maven.was5.stopServer.username}" password="${maven.was5.stopServer.password}" statusPort="${maven.was5.stopServer.statusPort}" noWait="${maven.was5.stopServer.noWait}" failonerror="${maven.was5.stopServer.failonerror}" logFile="${maven.was5.stopServer.logFile}" replaceLog="${maven.was5.stopServer.replaceLog}" trace="${maven.was5.stopServer.trace}" quiet="${maven.was5.stopServer.quiet}" wasHome="${maven.was5.home}"> </wasStopServer> </target> <target name="wasStartServer"> <wasStartServer server="${maven.was5.startServer.server}" timeout="${maven.was5.startServer.timeout}" username="${maven.was5.startServer.username}" password="${maven.was5.startServer.password}" statusPort="${maven.was5.startServer.statusPort}" script="${maven.was5.startServer.script}" noWait="${maven.was5.startServer.noWait}" failonerror="${maven.was5.startServer.failonerror}" logFile="${maven.was5.startServer.logFile}" replaceLog="${maven.was5.startServer.replaceLog}" trace="${maven.was5.startServer.trace}" quiet="${maven.was5.startServer.quiet}" wasHome="${maven.was5.home}"> </wasStartServer> </target> <target name="wasServerStatus"> <wasServerStatus server="${maven.was5.serverStatus.server}" all="${maven.was5.serverStatus.all}" cell="${maven.was5.serverStatus.cell}" node="${maven.was5.serverStatus.node}" trace="${maven.was5.serverStatus.trace}" quiet="${maven.was5.serverStatus.quiet}" statusPort="${maven.was5.serverStatus.statusPort}" failonerror="${maven.was5.serverStatus.failonerror}" wasHome="${maven.was5.home}"> </wasServerStatus> </target> <target name="wasInstallApp"> <wasInstallApp ear="${maven.was5.installApp.ear}" options="${maven.was5.installApp.options}" conntype="${maven.was5.installApp.conntype}" host="${maven.was5.installApp.host}" port="${maven.was5.installApp.port}" user="${maven.was5.installApp.username}" password="${maven.was5.installApp.password}" wasHome="${maven.was5.home}"> </wasInstallApp> </target> <target name="wasUninstallApp"> <wasUninstallApp application="${maven.was5.uninstallApp.application}" options="${maven.was5.uninstallApp.options}" conntype="${maven.was5.uninstallApp.conntype}" host="${maven.was5.uninstallApp.host}" port="${maven.was5.uninstallApp.port}" user="${maven.was5.uninstallApp.username}" password="${maven.was5.uninstallApp.password}" wasHome="${maven.was5.home}"> </wasUninstallApp> </target> <target name="wasStartApp"> <wasStartApp application="${maven.was5.startApp.application}" server="${maven.was5.startApp.server}" node="${maven.was5.startApp.node}" profile="${maven.was5.startApp.profile}" properties="${maven.was5.startApp.properties}" conntype="${maven.was5.startApp.conntype}" host="${maven.was5.startApp.host}" port="${maven.was5.startApp.port}" user="${maven.was5.startApp.username}" password="${maven.was5.startApp.password}" wasHome="${maven.was5.home}"> </wasStartApp> </target> <target name="wasStopApp"> <wasStopApp application="${maven.was5.stopApp.application}" server="${maven.was5.stopApp.server}" node="${maven.was5.stopApp.node}" password="${maven.was5.stopApp.password}" profile="${maven.was5.stopApp.profile}" properties="${maven.was5.stopApp.properties}" conntype="${maven.was5.stopApp.conntype}" host="${maven.was5.stopApp.host}" port="${maven.was5.stopApp.port}" user="${maven.was5.stopApp.username}" wasHome="${maven.was5.home}"> </wasStopApp> </target> </project> </j:jelly> 1.12 +32 -134 maven-plugins/was5/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/plugin.jelly,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- plugin.jelly 27 Aug 2004 05:48:26 -0000 1.11 +++ plugin.jelly 23 Jun 2005 18:03:09 -0000 1.12 @@ -1,9 +1,29 @@ <project default="serverStatus" - xmlns:j="jelly:core" - xmlns:u="jelly:util" xmlns:ant="jelly:ant" xmlns:assert="assert" - xmlns:maven="jelly:maven"> + xmlns:define="jelly:define" + xmlns:j="jelly:core" + xmlns:maven="jelly:maven" + xmlns:u="jelly:util" + xmlns:was5="was5"> + + <define:taglib uri="was5"> + <!-- + ! a tag to run a target in a generated ws_ant build file + ! @param target the name of the target to run. + !--> + <define:tag name="run-build-file-target"> + <ant:mkdir dir="${maven.build.dir}/was5"/> + <property name="mavenDependencyClasspath" refid="maven.dependency.classpath"/> + <j:file name="${maven.build.dir}/was5/build.xml"><j:include file="${plugin.resources}/build.xml.jelly"/></j:file> + <!-- TODO find .bat or .sh based on os --> + <exec executable="${maven.was5.home}/bin/ws_ant.bat"> + <arg value="-f"/> + <arg value="${maven.build.dir}/was5/build.xml"/> + <arg value="${target}"/> + </exec> + </define:tag> + </define:taglib> <!-- generate deployment and rmic code for an ejb jar --> <goal name="was5:ejbDeploy" description="Generate deployment and RMIC code for an ejb jar"> @@ -14,29 +34,7 @@ <mkdir dir="${maven.was5.ejbDeploy.workingdir}"/> <echo>Generating EJB code for: '${maven.was5.ejbDeploy.file}' to '${maven.was5.ejbDeploy.file.out}'</echo> - - <ant:taskdef name="wasEjbDeploy" classname="com.ibm.websphere.ant.tasks.WsEjbDeploy" classpath="${maven.was5.home}/lib/wsanttasks.jar"/> - <ant:wasEjbDeploy inputJar="${maven.was5.ejbDeploy.file}" - workingDirectory="${maven.was5.ejbDeploy.workingdir}" - outputJar="${maven.was5.ejbDeploy.file.out}" - classpathref="maven.dependency.classpath"> - <ant:setProperty name="codegen" value="${maven.was5.ejbDeploy.codegen}"/> - <ant:setProperty name="dbname" value="${maven.was5.ejbDeploy.dbname}"/> - <ant:setProperty name="dbschema" value="${maven.was5.ejbDeploy.dbschema}"/> - <ant:setProperty name="dbvendor" value="${maven.was5.ejbDeploy.dbvendor}"/> - <ant:setProperty name="dynamic" value="${maven.was5.ejbDeploy.dynamic}"/> - <ant:setProperty name="keepGenerated" value="${maven.was5.ejbDeploy.keepGenerated}"/> - <ant:setProperty name="quiet" value="${maven.was5.ejbDeploy.quiet}"/> - <ant:setProperty name="noValidate" value="${maven.was5.ejbDeploy.noValidate}"/> - <ant:setProperty name="noWarnings" value="${maven.was5.ejbDeploy.noWarnings}"/> - <ant:setProperty name="noInform" value="${maven.was5.ejbDeploy.noInform}"/> - <ant:setProperty name="rmicOptions" value="${maven.was5.ejbDeploy.rmicOptions}"/> - <ant:setProperty name="compatible35" value="${maven.was5.ejbDeploy.compatible35}"/> - <ant:setProperty name="sqlj" value="${maven.was5.ejbDeploy.sqlj}"/> - <ant:setProperty name="failonerror" value="${maven.was5.ejbDeploy.failonerror}"/> - <ant:setProperty name="trace" value="${maven.was5.ejbDeploy.trace}"/> - <ant:setProperty name="washome" value="${maven.was5.home}"/> - </ant:wasEjbDeploy> + <was5:run-build-file-target target="wasEjbDeploy"/> </goal> <!-- "auto-deploy" the ejb jar after the ejb has been created --> @@ -54,22 +52,7 @@ <maven:paramCheck fail="yes" value="${maven.was5.home}" message="ERROR: maven.was5.home is not set"/> <assert:assertFileExists file="${maven.was5.home}" msg=" ERROR: maven.was5.home is not a valid directory"/> - <taskdef name="wasStartServer" classname="com.ibm.websphere.ant.tasks.StartServer" classpath="${maven.was5.home}/lib/wsanttasks.jar"/> - <ant:wasStartServer server="${maven.was5.startServer.server}"> - <ant:setProperty name="timeout" value="${maven.was5.startServer.timeout}"/> - <ant:setProperty name="username" value="${maven.was5.startServer.username}"/> - <ant:setProperty name="password" value="${maven.was5.startServer.password}"/> - <ant:setProperty name="statusPort" value="${maven.was5.startServer.statusPort}"/> - <ant:setProperty name="script" value="${maven.was5.startServer.script}"/> - <ant:setProperty name="noWait" value="${maven.was5.startServer.noWait}"/> - <ant:setProperty name="failonerror" value="${maven.was5.startServer.failonerror}"/> - <ant:setProperty name="logFile" value="${maven.was5.startServer.logFile}"/> - <ant:setProperty name="replaceLog" value="${maven.was5.startServer.replaceLog}"/> - <ant:setProperty name="trace" value="${maven.was5.startServer.trace}"/> - <ant:setProperty name="quiet" value="${maven.was5.startServer.quiet}"/> - <ant:setProperty name="wasHome" value="${maven.was5.home}"/> - </ant:wasStartServer> - + <was5:run-build-file-target target="wasStartServer"/> </goal> <goal name="was5:stopServer" description="Stop a WebSphere Appserver"> @@ -77,24 +60,7 @@ <ant:fail unless="maven.was5.stopServer.server">maven.was5.stopServer.server must be specified (specifying maven.was5.server is sufficient)</ant:fail> <assert:assertFileExists file="${maven.was5.home}" msg=" ERROR: maven.was5.home is not a valid directory"/> - <taskdef name="wasStopServer" classname="com.ibm.websphere.ant.tasks.StopServer" classpath="${maven.was5.home}/lib/wsanttasks.jar"/> - <ant:wasStopServer server="${maven.was5.stopServer.server}"> - <ant:setProperty name="conntype" value="${maven.was5.stopServer.conntype}"/> - <ant:setProperty name="host" value="${maven.was5.stopServer.host}"/> - <ant:setProperty name="port" value="${maven.was5.stopServer.port}"/> - <ant:setProperty name="timeout" value="${maven.was5.stopServer.timeout}"/> - <ant:setProperty name="username" value="${maven.was5.stopServer.username}"/> - <ant:setProperty name="password" value="${maven.was5.stopServer.password}"/> - <ant:setProperty name="statusPort" value="${maven.was5.stopServer.statusPort}"/> - <ant:setProperty name="noWait" value="${maven.was5.stopServer.noWait}"/> - <ant:setProperty name="failonerror" value="${maven.was5.stopServer.failonerror}"/> - <ant:setProperty name="logFile" value="${maven.was5.stopServer.logFile}"/> - <ant:setProperty name="replaceLog" value="${maven.was5.stopServer.replaceLog}"/> - <ant:setProperty name="trace" value="${maven.was5.stopServer.trace}"/> - <ant:setProperty name="quiet" value="${maven.was5.stopServer.quiet}"/> - <ant:setProperty name="wasHome" value="${maven.was5.home}"/> - </ant:wasStopServer> - + <was5:run-build-file-target target="wasStopServer"/> </goal> <goal name="was5:serverStatus" description="Show the status of a WebSphere Appserver"> @@ -102,36 +68,14 @@ <maven:paramCheck fail="yes" value="${maven.was5.home}" message="ERROR: maven.was5.home is not set"/> <assert:assertFileExists file="${maven.was5.home}" msg=" ERROR: maven.was5.home is not a valid directory"/> - <taskdef name="wasServerStatus" classname="com.ibm.websphere.ant.tasks.ServerStatus" classpath="${maven.was5.home}/lib/wsanttasks.jar"/> - <ant:wasServerStatus server="${maven.was5.serverStatus.server}"> - <ant:setProperty name="all" value="${maven.was5.serverStatus.all}"/> - <ant:setProperty name="cell" value="${maven.was5.serverStatus.cell}"/> - <ant:setProperty name="node" value="${maven.was5.serverStatus.node}"/> - <ant:setProperty name="trace" value="${maven.was5.serverStatus.trace}"/> - <ant:setProperty name="quiet" value="${maven.was5.serverStatus.quiet}"/> - <ant:setProperty name="statusPort" value="${maven.was5.serverStatus.statusPort}"/> - <ant:setProperty name="failonerror" value="${maven.was5.serverStatus.failonerror}"/> - <ant:setProperty name="wasHome" value="${maven.was5.home}"/> - </ant:wasServerStatus> - + <was5:run-build-file-target target="wasServerStatus"/> </goal> <goal name="was5:listApps" description="List applications installed on a WebSphere Appserver"> <maven:paramCheck fail="yes" value="${maven.was5.home}" message="ERROR: maven.was5.home is not set"/> <assert:assertFileExists file="${maven.was5.home}" msg=" ERROR: maven.was5.home is not a valid directory"/> - <taskdef name="wasListApps" classname="com.ibm.websphere.ant.tasks.ListApplications" classpath="${maven.was5.home}/lib/wsanttasks.jar"/> - <ant:wasListApps> - <ant:setProperty name="profile" value="${maven.was5.listApps.profile}"/> - <ant:setProperty name="properties" value="${maven.was5.listApps.properties}"/> - <ant:setProperty name="conntype" value="${maven.was5.listApps.conntype}"/> - <ant:setProperty name="host" value="${maven.was5.listApps.host}"/> - <ant:setProperty name="port" value="${maven.was5.listApps.port}"/> - <ant:setProperty name="user" value="${maven.was5.listApps.username}"/> - <ant:setProperty name="password" value="${maven.was5.listApps.password}"/> - <ant:setProperty name="wasHome" value="${maven.was5.home}"/> - </ant:wasListApps> - + <was5:run-build-file-target target="wasListApps"/> </goal> <goal name="was5:installApp" description="Install an application on a WebSphere Appserver"> @@ -140,17 +84,7 @@ <maven:paramCheck fail="yes" value="${maven.was5.home}" message="ERROR: maven.was5.home is not set"/> <assert:assertFileExists file="${maven.was5.home}" msg=" ERROR: maven.was5.home is not a valid directory"/> - <taskdef name="wasInstallApp" classname="com.ibm.websphere.ant.tasks.InstallApplication" classpath="${maven.was5.home}/lib/wsanttasks.jar"/> - <ant:wasInstallApp ear="${maven.was5.installApp.ear}"> - <ant:setProperty name="options" value="${maven.was5.installApp.options}"/> - <ant:setProperty name="conntype" value="${maven.was5.installApp.conntype}"/> - <ant:setProperty name="host" value="${maven.was5.installApp.host}"/> - <ant:setProperty name="port" value="${maven.was5.installApp.port}"/> - <ant:setProperty name="user" value="${maven.was5.installApp.username}"/> - <ant:setProperty name="password" value="${maven.was5.installApp.password}"/> - <ant:setProperty name="wasHome" value="${maven.was5.home}"/> - </ant:wasInstallApp> - + <was5:run-build-file-target target="wasInstallApp"/> </goal> <goal name="was5:uninstallApp" description="Uninstall an application on a WebSphere Appserver"> @@ -158,17 +92,7 @@ <maven:paramCheck fail="yes" value="${maven.was5.home}" message="ERROR: maven.was5.home is not set"/> <assert:assertFileExists file="${maven.was5.home}" msg=" ERROR: maven.was5.home is not a valid directory"/> - <taskdef name="wasUninstallApp" classname="com.ibm.websphere.ant.tasks.UninstallApplication" classpath="${maven.was5.home}/lib/wsanttasks.jar"/> - <ant:wasUninstallApp application="${maven.was5.uninstallApp.application}"> - <ant:setProperty name="options" value="${maven.was5.uninstallApp.options}"/> - <ant:setProperty name="conntype" value="${maven.was5.uninstallApp.conntype}"/> - <ant:setProperty name="host" value="${maven.was5.uninstallApp.host}"/> - <ant:setProperty name="port" value="${maven.was5.uninstallApp.port}"/> - <ant:setProperty name="user" value="${maven.was5.uninstallApp.username}"/> - <ant:setProperty name="password" value="${maven.was5.uninstallApp.password}"/> - <ant:setProperty name="wasHome" value="${maven.was5.home}"/> - </ant:wasUninstallApp> - + <was5:run-build-file-target target="wasUninstallApp"/> </goal> <goal name="was5:startApp" description="Start an installed application on a WebSphere Appserver"> @@ -176,20 +100,7 @@ <maven:paramCheck fail="yes" value="${maven.was5.home}" message="ERROR: maven.was5.home is not set"/> <assert:assertFileExists file="${maven.was5.home}" msg=" ERROR: maven.was5.home is not a valid directory"/> - <taskdef name="wasStartApp" classname="com.ibm.websphere.ant.tasks.StartApplication" classpath="${maven.was5.home}/lib/wsanttasks.jar"/> - <ant:wasStartApp application="${maven.was5.startApp.application}"> - <ant:setProperty name="server" value="${maven.was5.startApp.server}"/> - <ant:setProperty name="node" value="${maven.was5.startApp.node}"/> - <ant:setProperty name="profile" value="${maven.was5.startApp.profile}"/> - <ant:setProperty name="properties" value="${maven.was5.startApp.properties}"/> - <ant:setProperty name="conntype" value="${maven.was5.startApp.conntype}"/> - <ant:setProperty name="host" value="${maven.was5.startApp.host}"/> - <ant:setProperty name="port" value="${maven.was5.startApp.port}"/> - <ant:setProperty name="user" value="${maven.was5.startApp.username}"/> - <ant:setProperty name="password" value="${maven.was5.startApp.password}"/> - <ant:setProperty name="wasHome" value="${maven.was5.home}"/> - </ant:wasStartApp> - + <was5:run-build-file-target target="wasStartApp"/> </goal> <goal name="was5:stopApp" description="Stop an installed application on a WebSphere Appserver"> @@ -197,20 +108,7 @@ <maven:paramCheck fail="yes" value="${maven.was5.home}" message="ERROR: maven.was5.home is not set"/> <assert:assertFileExists file="${maven.was5.home}" msg=" ERROR: maven.was5.home is not a valid directory"/> - <taskdef name="wasStopApp" classname="com.ibm.websphere.ant.tasks.StopApplication" classpath="${maven.was5.home}/lib/wsanttasks.jar"/> - <ant:wasStopApp application="${maven.was5.stopApp.application}"> - <ant:setProperty name="server" value="${maven.was5.stopApp.server}"/> - <ant:setProperty name="node" value="${maven.was5.stopApp.node}"/> - <ant:setProperty name="password" value="${maven.was5.stopApp.password}"/> - <ant:setProperty name="profile" value="${maven.was5.stopApp.profile}"/> - <ant:setProperty name="properties" value="${maven.was5.stopApp.properties}"/> - <ant:setProperty name="conntype" value="${maven.was5.stopApp.conntype}"/> - <ant:setProperty name="host" value="${maven.was5.stopApp.host}"/> - <ant:setProperty name="port" value="${maven.was5.stopApp.port}"/> - <ant:setProperty name="user" value="${maven.was5.stopApp.username}"/> - <ant:setProperty name="wasHome" value="${maven.was5.home}"/> - </ant:wasStopApp> - + <was5:run-build-file-target target="wasStopApp"/> </goal> <!-- reinstall an app --> 1.13 +1 -1 maven-plugins/was5/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/project.xml,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- project.xml 15 Oct 2004 11:17:36 -0000 1.12 +++ project.xml 23 Jun 2005 18:03:10 -0000 1.13 @@ -8,7 +8,7 @@ <name>WebSphere 5 (5.0/5.1) Plugin</name> <!-- groupId is in parent --> - <currentVersion>1.2.1-SNAPSHOT</currentVersion> + <currentVersion>2.0-SNAPSHOT</currentVersion> <!-- organization is in parent --> <inceptionYear>2004</inceptionYear> 1.13 +2 -1 maven-plugins/was5/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/xdocs/changes.xml,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- changes.xml 27 Aug 2004 05:48:26 -0000 1.12 +++ changes.xml 23 Jun 2005 18:03:10 -0000 1.13 @@ -6,7 +6,8 @@ <author email="dio...@us...">dIon Gillard</author> </properties> <body> - <release version="1.2.1-SNAPSHOT" date="in CVS"> + <release version="2.0-SNAPSHOT" date="in CVS"> + <action dev="diongillard" type="fix">Use ws_ant to invoke tasks, instead of using a taskdef as this is not supported by IBM</action> <action dev="diongillard" type="fix">username not being passed correctly</action> </release> <release version="1.2" date="2004-08-27"> |
From: dion g. <dio...@us...> - 2005-06-24 03:29:17
|
diongillard 05/06/23 20:28:38 Modified: was5/xdocs changes.xml Log: Add comments Revision Changes Path 1.14 +1 -1 maven-plugins/was5/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/xdocs/changes.xml,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- changes.xml 23 Jun 2005 18:03:10 -0000 1.13 +++ changes.xml 24 Jun 2005 03:28:33 -0000 1.14 @@ -7,7 +7,7 @@ </properties> <body> <release version="2.0-SNAPSHOT" date="in CVS"> - <action dev="diongillard" type="fix">Use ws_ant to invoke tasks, instead of using a taskdef as this is not supported by IBM</action> + <action dev="diongillard" type="fix">Use ws_ant to invoke tasks, instead of using a taskdef inside Maven, as this is not supported by IBM</action> <action dev="diongillard" type="fix">username not being passed correctly</action> </release> <release version="1.2" date="2004-08-27"> |
From: dion g. <dio...@us...> - 2005-06-24 03:29:46
|
diongillard 05/06/23 20:29:37 Modified: was5/xdocs changes.xml Log: Add deprecated goal docs Revision Changes Path 1.15 +1 -0 maven-plugins/was5/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/xdocs/changes.xml,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- changes.xml 24 Jun 2005 03:28:33 -0000 1.14 +++ changes.xml 24 Jun 2005 03:29:37 -0000 1.15 @@ -7,6 +7,7 @@ </properties> <body> <release version="2.0-SNAPSHOT" date="in CVS"> + <action dev="diongillard" type="update">Deprecate was5:run-script, replacing it with was5:runScript</action> <action dev="diongillard" type="fix">Use ws_ant to invoke tasks, instead of using a taskdef inside Maven, as this is not supported by IBM</action> <action dev="diongillard" type="fix">username not being passed correctly</action> </release> |
From: dion g. <dio...@us...> - 2005-11-01 19:54:23
|
diongillard 05/11/01 11:54:15 Modified: was5 project.xml was5/xdocs changes.xml Log: [maven-scm-plugin] prepare release 2.0 Revision Changes Path 1.15 +6 -8 maven-plugins/was5/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/project.xml,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- project.xml 11 Oct 2005 06:29:11 -0000 1.14 +++ project.xml 1 Nov 2005 19:54:15 -0000 1.15 @@ -3,22 +3,17 @@ <project> <extend>${basedir}/../plugin-project.xml</extend> <!--pomVersion is in parent --> - <id>maven-was5-plugin</id> <name>WebSphere 5 (5.0/5.1) Plugin</name> <!-- groupId is in parent --> - - <currentVersion>2.0-SNAPSHOT</currentVersion> + <currentVersion>2.0</currentVersion> <!-- organization is in parent --> - <inceptionYear>2004</inceptionYear> <!-- package, logo are in parent. no gumpRepositoryId --> - <description>A plugin to manage a WebSphere AppServer 5/5.1 artifacts and installation</description> <shortDescription>Manage WAS 5/5.1</shortDescription> <url>http://maven-plugins.sourceforge.net/${pom.artifactId}</url> <!-- issue tracking url, siteAddress are in parent --> - <siteDirectory>/home/groups/m/ma/maven-plugins/htdocs/maven-was5-plugin/</siteDirectory> <repository> <connection>scm:cvs:pserver:ano...@cv...:/cvsroot/maven-plugins:maven-plugins/was5</connection> @@ -41,9 +36,13 @@ <name>1.2</name> <tag>MAVEN_PLUGINS_WAS5_1_2</tag> </version> + <version> + <id>2.0</id> + <name>2.0</name> + <tag>WAS5PLUGIN-2_0</tag> + </version> </versions> <!-- mailingLists are in parent --> - <developers> <developer> <id>rlewisshell</id> @@ -60,5 +59,4 @@ <!-- licenses section not done yet --> <!-- build is in the parent --> <!-- reports is in the parent --> - </project> 1.16 +1 -1 maven-plugins/was5/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/xdocs/changes.xml,v retrieving revision 1.15 retrieving revision 1.16 diff -u -r1.15 -r1.16 --- changes.xml 24 Jun 2005 03:29:37 -0000 1.15 +++ changes.xml 1 Nov 2005 19:54:15 -0000 1.16 @@ -6,7 +6,7 @@ <author email="dio...@us...">dIon Gillard</author> </properties> <body> - <release version="2.0-SNAPSHOT" date="in CVS"> + <release version="2.0" date="2005-11-02"> <action dev="diongillard" type="update">Deprecate was5:run-script, replacing it with was5:runScript</action> <action dev="diongillard" type="fix">Use ws_ant to invoke tasks, instead of using a taskdef inside Maven, as this is not supported by IBM</action> <action dev="diongillard" type="fix">username not being passed correctly</action> |
From: dion g. <dio...@us...> - 2005-11-03 00:48:15
|
diongillard 05/11/02 16:48:06 Modified: was5/xdocs changes.xml Log: Host is not valid for stopServer. If you are stopping a server remotely, you must use wsadmin -host HostName -c "$AdminControl stopServer serverName". Maybe we should replace this goal with the wsadmin script exec only? Revision Changes Path 1.17 +3 -0 maven-plugins/was5/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/xdocs/changes.xml,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- changes.xml 1 Nov 2005 19:54:15 -0000 1.16 +++ changes.xml 3 Nov 2005 00:48:06 -0000 1.17 @@ -6,6 +6,9 @@ <author email="dio...@us...">dIon Gillard</author> </properties> <body> + <release version="2.0.1-SNAPSHOT" date="in CVS"> + <action dev="diongillard" type="fix">host is not a valid option for the ant task to stop a server.</action> + </release> <release version="2.0" date="2005-11-02"> <action dev="diongillard" type="update">Deprecate was5:run-script, replacing it with was5:runScript</action> <action dev="diongillard" type="fix">Use ws_ant to invoke tasks, instead of using a taskdef inside Maven, as this is not supported by IBM</action> |
From: dion g. <dio...@us...> - 2005-11-03 01:02:22
|
diongillard 05/11/02 17:02:16 Modified: was5 project.xml was5/xdocs changes.xml Log: [maven-scm-plugin] prepare release 2.0.1 Revision Changes Path 1.18 +6 -1 maven-plugins/was5/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/project.xml,v retrieving revision 1.17 retrieving revision 1.18 diff -u -r1.17 -r1.18 --- project.xml 3 Nov 2005 00:48:33 -0000 1.17 +++ project.xml 3 Nov 2005 01:02:16 -0000 1.18 @@ -6,7 +6,7 @@ <id>maven-was5-plugin</id> <name>WebSphere 5 (5.0/5.1) Plugin</name> <!-- groupId is in parent --> - <currentVersion>2.0.1-SNAPSHOT</currentVersion> + <currentVersion>2.0.1</currentVersion> <!-- organization is in parent --> <inceptionYear>2004</inceptionYear> <!-- package, logo are in parent. no gumpRepositoryId --> @@ -41,6 +41,11 @@ <name>2.0</name> <tag>WAS5PLUGIN-2_0</tag> </version> + <version> + <id>2.0.1</id> + <name>2.0.1</name> + <tag>WAS5PLUGIN-2_0_1</tag> + </version> </versions> <!-- mailingLists are in parent --> <developers> 1.18 +1 -1 maven-plugins/was5/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/xdocs/changes.xml,v retrieving revision 1.17 retrieving revision 1.18 diff -u -r1.17 -r1.18 --- changes.xml 3 Nov 2005 00:48:06 -0000 1.17 +++ changes.xml 3 Nov 2005 01:02:16 -0000 1.18 @@ -6,7 +6,7 @@ <author email="dio...@us...">dIon Gillard</author> </properties> <body> - <release version="2.0.1-SNAPSHOT" date="in CVS"> + <release version="2.0.1" date="2005-11-03"> <action dev="diongillard" type="fix">host is not a valid option for the ant task to stop a server.</action> </release> <release version="2.0" date="2005-11-02"> |
From: dion g. <dio...@us...> - 2005-11-04 02:36:39
|
diongillard 05/11/03 18:36:34 Modified: was5 plugin.jelly project.xml was5/xdocs changes.xml Log: Start on 2.0.2 - use ws_ant if found, else use ws_ant.sh or .bat Revision Changes Path 1.17 +6 -3 maven-plugins/was5/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/plugin.jelly,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- plugin.jelly 24 Jun 2005 03:24:24 -0000 1.16 +++ plugin.jelly 4 Nov 2005 02:36:33 -0000 1.17 @@ -18,14 +18,17 @@ <!-- find .bat or .sh based on os --> <j:choose> <j:when test="${systemScope['os.name'].startsWith('Windows')}"> - <j:set var="extension" value="bat"/> + <j:set var="extension" value=".bat"/> </j:when> <j:otherwise> - <j:set var="extension" value="sh"/> + <j:set var="extension" value=".sh"/> + <u:available file="${maven.was5.home}/bin/ws_ant"> + <j:set var="extension" value=""/> + </u:available> </j:otherwise> </j:choose> - <exec executable="${maven.was5.home}/bin/ws_ant.${extension}"> + <exec executable="${maven.was5.home}/bin/ws_ant${extension}"> <arg value="-f"/> <arg value="${maven.build.dir}/was5/build.xml"/> <arg value="${target}"/> 1.19 +11 -1 maven-plugins/was5/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/project.xml,v retrieving revision 1.18 retrieving revision 1.19 diff -u -r1.18 -r1.19 --- project.xml 3 Nov 2005 01:02:16 -0000 1.18 +++ project.xml 4 Nov 2005 02:36:33 -0000 1.19 @@ -6,7 +6,7 @@ <id>maven-was5-plugin</id> <name>WebSphere 5 (5.0/5.1) Plugin</name> <!-- groupId is in parent --> - <currentVersion>2.0.1</currentVersion> + <currentVersion>2.0.2-SNAPSHOT</currentVersion> <!-- organization is in parent --> <inceptionYear>2004</inceptionYear> <!-- package, logo are in parent. no gumpRepositoryId --> @@ -60,8 +60,18 @@ <email>dio...@us...</email> </developer> </developers> + <!-- no contributors --> <!-- licenses section not done yet --> + <dependencies> + <dependency> + <groupId>commons-jelly</groupId> + <artifactId>commons-jelly-tags-util</artifactId> + <version>1.1.1</version> + <url>http://jakarta.apache.org/commons/jelly/libs/util/</url> + </dependency> + </dependencies> + <!-- build is in the parent --> <!-- reports is in the parent --> </project> 1.19 +3 -0 maven-plugins/was5/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/xdocs/changes.xml,v retrieving revision 1.18 retrieving revision 1.19 diff -u -r1.18 -r1.19 --- changes.xml 3 Nov 2005 01:02:16 -0000 1.18 +++ changes.xml 4 Nov 2005 02:36:34 -0000 1.19 @@ -6,6 +6,9 @@ <author email="dio...@us...">dIon Gillard</author> </properties> <body> + <release version="2.0.2-SNAPSHOT" date="in CVS"> + <action dev="diongillard" type="fix" due-to="Jason Dillon">Check for ws_ant and use it if found when running the build files.</action> + </release> <release version="2.0.1" date="2005-11-03"> <action dev="diongillard" type="fix">host is not a valid option for the ant task to stop a server.</action> </release> |
From: dion g. <dio...@us...> - 2005-11-06 22:58:43
|
diongillard 05/11/06 14:58:34 Modified: was5 project.xml was5/xdocs changes.xml Log: [maven-scm-plugin] prepare release 2.0.2 Revision Changes Path 1.20 +6 -3 maven-plugins/was5/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/project.xml,v retrieving revision 1.19 retrieving revision 1.20 diff -u -r1.19 -r1.20 --- project.xml 4 Nov 2005 02:36:33 -0000 1.19 +++ project.xml 6 Nov 2005 22:58:33 -0000 1.20 @@ -6,7 +6,7 @@ <id>maven-was5-plugin</id> <name>WebSphere 5 (5.0/5.1) Plugin</name> <!-- groupId is in parent --> - <currentVersion>2.0.2-SNAPSHOT</currentVersion> + <currentVersion>2.0.2</currentVersion> <!-- organization is in parent --> <inceptionYear>2004</inceptionYear> <!-- package, logo are in parent. no gumpRepositoryId --> @@ -46,6 +46,11 @@ <name>2.0.1</name> <tag>WAS5PLUGIN-2_0_1</tag> </version> + <version> + <id>2.0.2</id> + <name>2.0.2</name> + <tag>WAS5PLUGIN-2_0_2</tag> + </version> </versions> <!-- mailingLists are in parent --> <developers> @@ -60,7 +65,6 @@ <email>dio...@us...</email> </developer> </developers> - <!-- no contributors --> <!-- licenses section not done yet --> <dependencies> @@ -71,7 +75,6 @@ <url>http://jakarta.apache.org/commons/jelly/libs/util/</url> </dependency> </dependencies> - <!-- build is in the parent --> <!-- reports is in the parent --> </project> 1.20 +1 -1 maven-plugins/was5/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/xdocs/changes.xml,v retrieving revision 1.19 retrieving revision 1.20 diff -u -r1.19 -r1.20 --- changes.xml 4 Nov 2005 02:36:34 -0000 1.19 +++ changes.xml 6 Nov 2005 22:58:34 -0000 1.20 @@ -6,7 +6,7 @@ <author email="dio...@us...">dIon Gillard</author> </properties> <body> - <release version="2.0.2-SNAPSHOT" date="in CVS"> + <release version="2.0.2" date="2005-11-07"> <action dev="diongillard" type="fix" due-to="Jason Dillon">Check for ws_ant and use it if found when running the build files.</action> </release> <release version="2.0.1" date="2005-11-03"> |
From: dion g. <dio...@us...> - 2005-11-07 02:19:29
|
diongillard 05/11/06 18:19:23 Modified: was5 project.xml was5/xdocs changes.xml Log: Open up 2.0.3 Revision Changes Path 1.21 +1 -1 maven-plugins/was5/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/project.xml,v retrieving revision 1.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- project.xml 6 Nov 2005 22:58:33 -0000 1.20 +++ project.xml 7 Nov 2005 02:19:23 -0000 1.21 @@ -6,7 +6,7 @@ <id>maven-was5-plugin</id> <name>WebSphere 5 (5.0/5.1) Plugin</name> <!-- groupId is in parent --> - <currentVersion>2.0.2</currentVersion> + <currentVersion>2.0.3-SNAPSHOT</currentVersion> <!-- organization is in parent --> <inceptionYear>2004</inceptionYear> <!-- package, logo are in parent. no gumpRepositoryId --> 1.21 +2 -0 maven-plugins/was5/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/xdocs/changes.xml,v retrieving revision 1.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- changes.xml 6 Nov 2005 22:58:34 -0000 1.20 +++ changes.xml 7 Nov 2005 02:19:23 -0000 1.21 @@ -6,6 +6,8 @@ <author email="dio...@us...">dIon Gillard</author> </properties> <body> + <release version="2.0.3-SNAPSHOT" date="in CVS"> + </release> <release version="2.0.2" date="2005-11-07"> <action dev="diongillard" type="fix" due-to="Jason Dillon">Check for ws_ant and use it if found when running the build files.</action> </release> |
From: dion g. <dio...@us...> - 2005-11-15 13:42:01
|
diongillard 05/11/15 05:41:55 Modified: was5/xdocs changes.xml Log: details on 2.0.3 changes Revision Changes Path 1.22 +1 -0 maven-plugins/was5/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/xdocs/changes.xml,v retrieving revision 1.21 retrieving revision 1.22 diff -u -r1.21 -r1.22 --- changes.xml 7 Nov 2005 02:19:23 -0000 1.21 +++ changes.xml 15 Nov 2005 13:41:55 -0000 1.22 @@ -7,6 +7,7 @@ </properties> <body> <release version="2.0.3-SNAPSHOT" date="in CVS"> + <action dev="diongillard" type="update">Update property docs</action> </release> <release version="2.0.2" date="2005-11-07"> <action dev="diongillard" type="fix" due-to="Jason Dillon">Check for ws_ant and use it if found when running the build files.</action> |