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