From: dion g. <dio...@us...> - 2004-02-27 07:44:19
|
diongillard 04/02/26 23:28:00 Modified: was40 plugin.jelly Log: - Fix classpath by passing it in as an arg to ejbdeploy - Add java_home and path environment variables for rmic Revision Changes Path 1.2 +7 -3 maven-plugins/was40/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was40/plugin.jelly,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- plugin.jelly 16 Feb 2004 23:53:51 -0000 1.1 +++ plugin.jelly 27 Feb 2004 07:28:00 -0000 1.2 @@ -218,7 +218,7 @@ <goal name="was40:generate-ejb-code" description="generate deployment and rmic code for an ejb jar"> <echo>Generating code for: '${maven.was40.ejb.file}' into '${maven.was40.ejb.file.out}'</echo> <!-- clean up working dir --> - <j:set var="workingDir" value="${maven.was40.workingDir}" /> + <j:set var="workingDir" value="${maven.was40.workingDir}/ejbdeploy" /> <delete dir="${workingDir}" failonerror="false"/> <mkdir dir="${workingDir}"/> @@ -238,21 +238,25 @@ </path> <path id="ejbdeploy.classpath"> - <path refid="maven.dependency.classpath"/> <path refid="ws_cp"/> <path refid="ejbd_cp"/> <path refid="itp_cp"/> </path> + <property name="cpMaven" refid="maven.dependency.classpath"/> + <java className="com.ibm.etools.ejbdeploy.EJBDeploy" fork="true" classpathRef="ejbdeploy.classpath"> + <env key="JAVA_HOME" value="${maven.was40.home}/java"/> + <env key="PATH" value="${maven.was40.home}/java/bin"/> <jvmarg value="-Xmx512m"/> <sysproperty key="websphere.lib.dir" value="${maven.was40.home}/lib"/> <arg value="${maven.was40.ejb.file}" /> <arg value="${workingDir}" /> <arg value="${maven.was40.ejb.out.file}" /> + <arg value="-cp"/> + <arg value="${cpMaven}"/> </java> - </goal> </project> \ No newline at end of file |
From: dion g. <dio...@us...> - 2004-03-03 00:22:45
|
diongillard 04/03/02 16:02:47 Modified: was40 plugin.jelly Log: *** keyword substitution change *** Revision Changes Path 1.4 +274 -274 maven-plugins/was40/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was40/plugin.jelly,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- plugin.jelly 3 Mar 2004 00:01:20 -0000 1.3 +++ plugin.jelly 3 Mar 2004 00:02:47 -0000 1.4 @@ -1,275 +1,275 @@ -<?xml version="1.0"?> -<project - xmlns:define="jelly:define" - xmlns:j="jelly:core" - xmlns:u="jelly:util" - xmlns:was40wscp="was40wscp"> - - <!-- set up maven.was40.script --> - <j:choose> - <j:when test="${systemScope['os.name'].startsWith('Windows')}"> - <j:set var="maven.was40.script" value="${maven.was40.wscpExe}.bat"/> - <j:set var="maven.was40.startServer.script" - value="${maven.was40.bin}/adminserver.bat" /> - <j:set var="maven.was40.plugin" value="${maven.was40.bin}/GenPluginCfg.bat" /> - <j:set var="maven.was40.dumpNameSpace" value="${maven.was40.bin}/dumpNameSpace.bat" /> - <j:set var="maven.was40.earExpander" value="${maven.was40.bin}/EARExpander.bat" /> - <j:set var="maven.was40.ejbDeployer" value="${maven.was40.bin}/ejbdeploy.bat" /> - </j:when> - <j:otherwise> - <j:set var="maven.was40.script" value="${maven.was40.wscpExe}.sh"/> - <j:set var="maven.was40.startServer.script" - value="${maven.was40.startNode}.sh" /> - <j:set var="maven.was40.plugin" value="${maven.was40.bin}/GenPluginCfg.sh" /> - <j:set var="maven.was40.dumpNameSpace" value="${maven.was40.bin}/dumpNameSpace.sh" /> - <j:set var="maven.was40.earExpander" value="${maven.was40.bin}/EARExpander.sh" /> - <j:set var="maven.was40.ejbDeployer" value="${maven.was40.bin}/ejbdeploy.sh" /> - </j:otherwise> - </j:choose> - - <!-- set up some tags to make calling wscp easier --> - <define:taglib uri="was40wscp"> - - <!-- - ! Execute a command using the WebSphere Control Program - ! @param command the wscp command to execute - ! @param var (optional) a variable to set with the results of the execution - !--> - <define:tag name="exec"> - <j:if test="${empty(command)}"> - <fail>attribute command must be provided</fail> - </j:if> - - <!-- - wscp.qualifyHomeName=true - wscp.remotePasswordFile= - wscp.remoteConnectionTimeout=300 - wscp.remoteConnectionsAllowed=true - wscp.remoteHostListAccept= - wscp.remoteHostListReject= - # - # set traceString to enable tracing - # - # wscp.traceString=com.ibm.ejs.sm.client.ui.desc.*=all=enabled - # wscp.traceString=com.ibm.ejs.sm.ejscp.*=all=enabled - ## - # Typically, these need to be set if only ContextExtension is loaded - # (otherwise, EjscpExtension sets them as noted above) - # - # com.ibm.CORBA.BootstrapHost=pc-dev1 - # com.ibm.CORBA.BootstrapPort=900 - # java.naming.factory.initial=com.ibm.ejs.ns.jndi.CNInitialContextFactory - --> - - <!-- delete the properties file here and recreate it --> - <delete file="${java.io.tmpdir}/was40.properties" /> - <j:file name="${java.io.tmpdir}/was40.properties" omitXmlDeclaration="true" escapeText="false"> - wscp.hostName=${maven.was40.node} - wscp.hostPort=${maven.was40.hostPort} - wscp.primaryNode=${maven.was40.primaryNode} - </j:file> - - <!-- properties file --> - <u:file name="${java.io.tmpdir}/was40.properties" var="props" /> - <echo>Executing '${command}' using wscp</echo> - <exec executable="${maven.was40.script}" outputproperty="results"> - <arg value="-p" /> - <arg value="${props.canonicalPath}" /> - <arg value="${maven.was40.wscpArgs}" /> - <arg value="${command}" /> - </exec> - - <!-- test if arguments have been passed --> - <j:if test="${empty(var)}"> - <echo>${results}</echo> - </j:if> - <j:if test="${!empty(var)}"> - <j:set scope="parent" var="${var}" value="${results}" /> - </j:if> - </define:tag> - </define:taglib> - - <!-- default goal --> - <goal name="was40" - description="Obtain the list of nodes on the WebSphere Application Server"> - <attainGoal name="was40:list-node" /> - </goal> - - <goal name="was40:start" - description="Starts the specified node."> - <echo>Staring Node: '${maven.was40.node}'</echo> - <exec executable="${maven.was40.startServer.script}" /> - </goal> - - <goal name="was40:stop" - description="Stops the specified websphere node."> - <echo>Stopping node: '${maven.was40.node}'</echo> - <was40wscp:exec command="${maven.was40.stopNode}" /> - </goal> - - <goal name="was40:list-node" description="Obtain the list of nodes on the WebSphere Application Server"> - <echo>Retreiving a list of available Nodes...</echo> - <was40wscp:exec command="${maven.was40.listNode}"/> - </goal> - - <goal name="was40:deploy-ear" - description="Deploy an enterprise application"> - - <echo>Deploying enterprise application: '${maven.was40.enterprise.app.name}'</echo> - <was40wscp:exec command="${maven.was40.deployApp}" /> - </goal> - - <goal name="was40:app-stop" - description="Stop an enterprise application"> - <echo>Stopping enterprise application: '${maven.was40.enterprise.app.name}'</echo> - <was40wscp:exec command="${maven.was40.stopApp}" /> - </goal> - - <goal name="was40:undeploy-ear" - description="Remove an enterprise application"> - <echo>Removing enterprise application: '${maven.was40.enterprise.app.name}'</echo> - <was40wscp:exec command="${maven.was40.removeApp}" /> - </goal> - - <goal name="was40:app-start" - description="Start enterprise application"> - <echo>Starting enterprise application: '${maven.was40.enterprise.app.name}'</echo> - <was40wscp:exec command="${maven.was40.startApp}" /> - </goal> - - <goal name="was40:deploy-to-servergroup" - description="Deploy an application to a server group"> - <echo>Deploying enterprise application to server group: '${maven.was40.serverGroup.name}'</echo> - <was40wscp:exec command="${maven.was40.servergroup.install}" /> - </goal> - - <goal name="was40:start-appserver" - description="Start a websphere application server"> - <echo>Starting Application Server: '${maven.was40.appserver.name}'</echo> - <was40wscp:exec command="${maven.was40.appserver.start}" /> - </goal> - - <goal name="was40:stop-appserver" - description="Stop a websphere application server"> - <echo>Stopping Application Server: '${maven.was40.appserver.name}'</echo> - <was40wscp:exec command="${maven.was40.appserver.stop}" /> - </goal> - - <goal name="was40:start-servergroup" - description="Start a websphere server group"> - <echo>Starting ServerGroup: '${maven.was40.serverGroup.name}'</echo> - <was40wscp:exec command="${maven.was40.servergroup.start}" /> - </goal> - - <goal name="was40:stop-servergroup" - description="Stop a websphere server group"> - <echo>Stopping ServerGroup: '${maven.was40.serverGroup.name}'</echo> - <was40wscp:exec command="${maven.was40.servergroup.stop}" /> - </goal> - - <goal name="was40:list-apps" description="List the applications installed on this node"> - <echo>Obtaining a list of Enterprise applications for node: '${maven.was40.node}'</echo> - <was40wscp:exec command="${maven.was40.listEnterpriseApps}" /> - </goal> - - <goal name="was40:app-show" description="Display extra information about the EAR"> - <echo>Obtaining Details about EAR: '${maven.was40.enterprise.app.name}'</echo> - <was40wscp:exec command="${maven.was40.enterpriseAppShow}" /> - </goal> - - <goal name="was40:regen" description="Regenerate the Plugin"> - <echo>Regenerating Plugin for node: '${maven.was40.node}'</echo> - <exec executable="${maven.was40.plugin}" outputproperty="results"> - <arg value="-adminNodeName" /> - <arg value="${maven.was40.primaryNode}" /> - <arg value="-nodeName" /> - <arg value="${maven.was40.node}" /> - </exec> - <echo>${results}</echo> - </goal> - - <goal name="was40:jndi-dump" description="Dump the appserver's JNDI namespace"> - <echo>Dumping [jndi] Namespace for node: '${maven.was40.node}'</echo> - <exec executable="${maven.was40.dumpNameSpace}" outputproperty="result"> - <arg value="-host" /> - <arg value="${maven.was40.node}" /> - <arg value="-port" /> - <arg value="${maven.was40.hostPort}" /> - </exec> - <echo>${result}</echo> - </goal> - - <goal name="was40:expand" description="Expand EAR into the ../installedApps/appName.ear directory"> - <echo>Expanding EAR: '${maven.was40.enterprise.app.name}' into '${maven.was40.expandDir}/${maven.was40.enterprise.app.name}.ear'</echo> - <exec executable="${maven.was40.earExpander}" outputproperty="results"> - <arg value="-ear" /> - <arg value="${maven.was40.enterprise.app}" /> - <arg value="-expandDir" /> - <arg value="${maven.was40.expandDir}/${maven.was40.enterprise.app.name}.ear" /> - <arg value="-operation" /> - <arg value="expand" /> - <arg value="-expansionFlags" /> - <arg value="all" /> - </exec> - <echo>${results}</echo> - </goal> - - <!-- generate deployment and rmic code for an ejb jar --> - <goal name="was40:generate-ejb-code" description="generate deployment and rmic code for an ejb jar"> - <echo>Generating code for: '${maven.was40.ejb.file}' into '${maven.was40.ejb.out.file}'</echo> - <!-- clean up working dir --> - <j:set var="workingDir" value="${maven.was40.workingDir}/ejbdeploy" /> - <delete dir="${workingDir}" failonerror="false"/> - <mkdir dir="${workingDir}"/> - - <!-- create directory for output file --> - <mkdir dir="${maven.build.dir}/was40"/> - - <path id="ws_cp"> - <pathelement location="${maven.was40.home}/lib/xerces.jar"/> - <pathelement location="${maven.was40.home}/lib/ivjejb35.jar"/> - <pathelement location="${maven.was40.home}/lib/j2ee.jar"/> - <pathelement location="${maven.was40.home}/lib/vaprt.jar"/> - </path> - - <path id="ejbd_cp"> - <pathelement location="${maven.was40.home}/deploytool/itp/plugins/com.ibm.etools.ejbdeploy/runtime/batch.jar"/> - </path> - - <path id="itp_cp"> - <pathelement location="${maven.was40.home}/deploytool/itp/plugins/org.eclipse.core.boot/boot.jar"/> - </path> - - <path id="ejbdeploy.classpath"> - <path refid="ws_cp"/> - <path refid="ejbd_cp"/> - <path refid="itp_cp"/> - </path> - - <property name="cpMaven" refid="maven.dependency.classpath"/> - - <java className="com.ibm.etools.ejbdeploy.EJBDeploy" - fork="true" - classpathRef="ejbdeploy.classpath"> - <env key="JAVA_HOME" value="${maven.was40.home}/java"/> - <env key="PATH" value="${maven.was40.home}/java/bin"/> - <jvmarg value="-Xmx512m"/> - <sysproperty key="websphere.lib.dir" value="${maven.was40.home}/lib"/> - <arg value="${maven.was40.ejb.file}" /> - <arg value="${workingDir}" /> - <arg value="${maven.was40.ejb.out.file}" /> - <arg value="-cp"/> - <arg value="${cpMaven}"/> - </java> - </goal> - - <!-- "auto-deploy" the ejb jar after the ejb has been created --> - <postGoal name="ejb:ejb"> - <echo>In post goal, property is '${maven.was40.ejb.autodeploy}'</echo> - <j:set var="generate" value="${maven.was40.ejb.generateCode}"/> - <j:if test="${!empty(generate)}"> - <echo>Generating Deployed code for ejb on was40 (${maven.was40.home})</echo> - <attainGoal name="was40:generate-ejb-code"/> - </j:if> - </postGoal> +<?xml version="1.0"?> +<project + xmlns:define="jelly:define" + xmlns:j="jelly:core" + xmlns:u="jelly:util" + xmlns:was40wscp="was40wscp"> + + <!-- set up maven.was40.script --> + <j:choose> + <j:when test="${systemScope['os.name'].startsWith('Windows')}"> + <j:set var="maven.was40.script" value="${maven.was40.wscpExe}.bat"/> + <j:set var="maven.was40.startServer.script" + value="${maven.was40.bin}/adminserver.bat" /> + <j:set var="maven.was40.plugin" value="${maven.was40.bin}/GenPluginCfg.bat" /> + <j:set var="maven.was40.dumpNameSpace" value="${maven.was40.bin}/dumpNameSpace.bat" /> + <j:set var="maven.was40.earExpander" value="${maven.was40.bin}/EARExpander.bat" /> + <j:set var="maven.was40.ejbDeployer" value="${maven.was40.bin}/ejbdeploy.bat" /> + </j:when> + <j:otherwise> + <j:set var="maven.was40.script" value="${maven.was40.wscpExe}.sh"/> + <j:set var="maven.was40.startServer.script" + value="${maven.was40.startNode}.sh" /> + <j:set var="maven.was40.plugin" value="${maven.was40.bin}/GenPluginCfg.sh" /> + <j:set var="maven.was40.dumpNameSpace" value="${maven.was40.bin}/dumpNameSpace.sh" /> + <j:set var="maven.was40.earExpander" value="${maven.was40.bin}/EARExpander.sh" /> + <j:set var="maven.was40.ejbDeployer" value="${maven.was40.bin}/ejbdeploy.sh" /> + </j:otherwise> + </j:choose> + + <!-- set up some tags to make calling wscp easier --> + <define:taglib uri="was40wscp"> + + <!-- + ! Execute a command using the WebSphere Control Program + ! @param command the wscp command to execute + ! @param var (optional) a variable to set with the results of the execution + !--> + <define:tag name="exec"> + <j:if test="${empty(command)}"> + <fail>attribute command must be provided</fail> + </j:if> + + <!-- + wscp.qualifyHomeName=true + wscp.remotePasswordFile= + wscp.remoteConnectionTimeout=300 + wscp.remoteConnectionsAllowed=true + wscp.remoteHostListAccept= + wscp.remoteHostListReject= + # + # set traceString to enable tracing + # + # wscp.traceString=com.ibm.ejs.sm.client.ui.desc.*=all=enabled + # wscp.traceString=com.ibm.ejs.sm.ejscp.*=all=enabled + ## + # Typically, these need to be set if only ContextExtension is loaded + # (otherwise, EjscpExtension sets them as noted above) + # + # com.ibm.CORBA.BootstrapHost=pc-dev1 + # com.ibm.CORBA.BootstrapPort=900 + # java.naming.factory.initial=com.ibm.ejs.ns.jndi.CNInitialContextFactory + --> + + <!-- delete the properties file here and recreate it --> + <delete file="${java.io.tmpdir}/was40.properties" /> + <j:file name="${java.io.tmpdir}/was40.properties" omitXmlDeclaration="true" escapeText="false"> + wscp.hostName=${maven.was40.node} + wscp.hostPort=${maven.was40.hostPort} + wscp.primaryNode=${maven.was40.primaryNode} + </j:file> + + <!-- properties file --> + <u:file name="${java.io.tmpdir}/was40.properties" var="props" /> + <echo>Executing '${command}' using wscp</echo> + <exec executable="${maven.was40.script}" outputproperty="results"> + <arg value="-p" /> + <arg value="${props.canonicalPath}" /> + <arg value="${maven.was40.wscpArgs}" /> + <arg value="${command}" /> + </exec> + + <!-- test if arguments have been passed --> + <j:if test="${empty(var)}"> + <echo>${results}</echo> + </j:if> + <j:if test="${!empty(var)}"> + <j:set scope="parent" var="${var}" value="${results}" /> + </j:if> + </define:tag> + </define:taglib> + + <!-- default goal --> + <goal name="was40" + description="Obtain the list of nodes on the WebSphere Application Server"> + <attainGoal name="was40:list-node" /> + </goal> + + <goal name="was40:start" + description="Starts the specified node."> + <echo>Staring Node: '${maven.was40.node}'</echo> + <exec executable="${maven.was40.startServer.script}" /> + </goal> + + <goal name="was40:stop" + description="Stops the specified websphere node."> + <echo>Stopping node: '${maven.was40.node}'</echo> + <was40wscp:exec command="${maven.was40.stopNode}" /> + </goal> + + <goal name="was40:list-node" description="Obtain the list of nodes on the WebSphere Application Server"> + <echo>Retreiving a list of available Nodes...</echo> + <was40wscp:exec command="${maven.was40.listNode}"/> + </goal> + + <goal name="was40:deploy-ear" + description="Deploy an enterprise application"> + + <echo>Deploying enterprise application: '${maven.was40.enterprise.app.name}'</echo> + <was40wscp:exec command="${maven.was40.deployApp}" /> + </goal> + + <goal name="was40:app-stop" + description="Stop an enterprise application"> + <echo>Stopping enterprise application: '${maven.was40.enterprise.app.name}'</echo> + <was40wscp:exec command="${maven.was40.stopApp}" /> + </goal> + + <goal name="was40:undeploy-ear" + description="Remove an enterprise application"> + <echo>Removing enterprise application: '${maven.was40.enterprise.app.name}'</echo> + <was40wscp:exec command="${maven.was40.removeApp}" /> + </goal> + + <goal name="was40:app-start" + description="Start enterprise application"> + <echo>Starting enterprise application: '${maven.was40.enterprise.app.name}'</echo> + <was40wscp:exec command="${maven.was40.startApp}" /> + </goal> + + <goal name="was40:deploy-to-servergroup" + description="Deploy an application to a server group"> + <echo>Deploying enterprise application to server group: '${maven.was40.serverGroup.name}'</echo> + <was40wscp:exec command="${maven.was40.servergroup.install}" /> + </goal> + + <goal name="was40:start-appserver" + description="Start a websphere application server"> + <echo>Starting Application Server: '${maven.was40.appserver.name}'</echo> + <was40wscp:exec command="${maven.was40.appserver.start}" /> + </goal> + + <goal name="was40:stop-appserver" + description="Stop a websphere application server"> + <echo>Stopping Application Server: '${maven.was40.appserver.name}'</echo> + <was40wscp:exec command="${maven.was40.appserver.stop}" /> + </goal> + + <goal name="was40:start-servergroup" + description="Start a websphere server group"> + <echo>Starting ServerGroup: '${maven.was40.serverGroup.name}'</echo> + <was40wscp:exec command="${maven.was40.servergroup.start}" /> + </goal> + + <goal name="was40:stop-servergroup" + description="Stop a websphere server group"> + <echo>Stopping ServerGroup: '${maven.was40.serverGroup.name}'</echo> + <was40wscp:exec command="${maven.was40.servergroup.stop}" /> + </goal> + + <goal name="was40:list-apps" description="List the applications installed on this node"> + <echo>Obtaining a list of Enterprise applications for node: '${maven.was40.node}'</echo> + <was40wscp:exec command="${maven.was40.listEnterpriseApps}" /> + </goal> + + <goal name="was40:app-show" description="Display extra information about the EAR"> + <echo>Obtaining Details about EAR: '${maven.was40.enterprise.app.name}'</echo> + <was40wscp:exec command="${maven.was40.enterpriseAppShow}" /> + </goal> + + <goal name="was40:regen" description="Regenerate the Plugin"> + <echo>Regenerating Plugin for node: '${maven.was40.node}'</echo> + <exec executable="${maven.was40.plugin}" outputproperty="results"> + <arg value="-adminNodeName" /> + <arg value="${maven.was40.primaryNode}" /> + <arg value="-nodeName" /> + <arg value="${maven.was40.node}" /> + </exec> + <echo>${results}</echo> + </goal> + + <goal name="was40:jndi-dump" description="Dump the appserver's JNDI namespace"> + <echo>Dumping [jndi] Namespace for node: '${maven.was40.node}'</echo> + <exec executable="${maven.was40.dumpNameSpace}" outputproperty="result"> + <arg value="-host" /> + <arg value="${maven.was40.node}" /> + <arg value="-port" /> + <arg value="${maven.was40.hostPort}" /> + </exec> + <echo>${result}</echo> + </goal> + + <goal name="was40:expand" description="Expand EAR into the ../installedApps/appName.ear directory"> + <echo>Expanding EAR: '${maven.was40.enterprise.app.name}' into '${maven.was40.expandDir}/${maven.was40.enterprise.app.name}.ear'</echo> + <exec executable="${maven.was40.earExpander}" outputproperty="results"> + <arg value="-ear" /> + <arg value="${maven.was40.enterprise.app}" /> + <arg value="-expandDir" /> + <arg value="${maven.was40.expandDir}/${maven.was40.enterprise.app.name}.ear" /> + <arg value="-operation" /> + <arg value="expand" /> + <arg value="-expansionFlags" /> + <arg value="all" /> + </exec> + <echo>${results}</echo> + </goal> + + <!-- generate deployment and rmic code for an ejb jar --> + <goal name="was40:generate-ejb-code" description="generate deployment and rmic code for an ejb jar"> + <echo>Generating code for: '${maven.was40.ejb.file}' into '${maven.was40.ejb.out.file}'</echo> + <!-- clean up working dir --> + <j:set var="workingDir" value="${maven.was40.workingDir}/ejbdeploy" /> + <delete dir="${workingDir}" failonerror="false"/> + <mkdir dir="${workingDir}"/> + + <!-- create directory for output file --> + <mkdir dir="${maven.build.dir}/was40"/> + + <path id="ws_cp"> + <pathelement location="${maven.was40.home}/lib/xerces.jar"/> + <pathelement location="${maven.was40.home}/lib/ivjejb35.jar"/> + <pathelement location="${maven.was40.home}/lib/j2ee.jar"/> + <pathelement location="${maven.was40.home}/lib/vaprt.jar"/> + </path> + + <path id="ejbd_cp"> + <pathelement location="${maven.was40.home}/deploytool/itp/plugins/com.ibm.etools.ejbdeploy/runtime/batch.jar"/> + </path> + + <path id="itp_cp"> + <pathelement location="${maven.was40.home}/deploytool/itp/plugins/org.eclipse.core.boot/boot.jar"/> + </path> + + <path id="ejbdeploy.classpath"> + <path refid="ws_cp"/> + <path refid="ejbd_cp"/> + <path refid="itp_cp"/> + </path> + + <property name="cpMaven" refid="maven.dependency.classpath"/> + + <java className="com.ibm.etools.ejbdeploy.EJBDeploy" + fork="true" + classpathRef="ejbdeploy.classpath"> + <env key="JAVA_HOME" value="${maven.was40.home}/java"/> + <env key="PATH" value="${maven.was40.home}/java/bin"/> + <jvmarg value="-Xmx512m"/> + <sysproperty key="websphere.lib.dir" value="${maven.was40.home}/lib"/> + <arg value="${maven.was40.ejb.file}" /> + <arg value="${workingDir}" /> + <arg value="${maven.was40.ejb.out.file}" /> + <arg value="-cp"/> + <arg value="${cpMaven}"/> + </java> + </goal> + + <!-- "auto-deploy" the ejb jar after the ejb has been created --> + <postGoal name="ejb:ejb"> + <echo>In post goal, property is '${maven.was40.ejb.autodeploy}'</echo> + <j:set var="generate" value="${maven.was40.ejb.generateCode}"/> + <j:if test="${!empty(generate)}"> + <echo>Generating Deployed code for ejb on was40 (${maven.was40.home})</echo> + <attainGoal name="was40:generate-ejb-code"/> + </j:if> + </postGoal> </project> \ No newline at end of file |
From: dion g. <dio...@us...> - 2004-03-03 01:20:47
|
diongillard 04/03/02 17:00:47 Modified: was40 plugin.jelly Log: Copy generated file over starting point Revision Changes Path 1.5 +2 -0 maven-plugins/was40/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was40/plugin.jelly,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- plugin.jelly 3 Mar 2004 00:02:47 -0000 1.4 +++ plugin.jelly 3 Mar 2004 01:00:46 -0000 1.5 @@ -270,6 +270,8 @@ <j:if test="${!empty(generate)}"> <echo>Generating Deployed code for ejb on was40 (${maven.was40.home})</echo> <attainGoal name="was40:generate-ejb-code"/> + <!-- copy jar with deployed code over original --> + <copy file="${maven.was40.ejb.out.file}" tofile="${maven.was40.ejb.file}"/> </j:if> </postGoal> </project> \ No newline at end of file |
From: dion g. <dio...@us...> - 2004-03-03 03:43:30
|
diongillard 04/03/02 19:23:23 Modified: was40 plugin.jelly Log: Remove debug echos Revision Changes Path 1.6 +0 -2 maven-plugins/was40/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was40/plugin.jelly,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- plugin.jelly 3 Mar 2004 01:00:46 -0000 1.5 +++ plugin.jelly 3 Mar 2004 03:23:16 -0000 1.6 @@ -265,10 +265,8 @@ <!-- "auto-deploy" the ejb jar after the ejb has been created --> <postGoal name="ejb:ejb"> - <echo>In post goal, property is '${maven.was40.ejb.autodeploy}'</echo> <j:set var="generate" value="${maven.was40.ejb.generateCode}"/> <j:if test="${!empty(generate)}"> - <echo>Generating Deployed code for ejb on was40 (${maven.was40.home})</echo> <attainGoal name="was40:generate-ejb-code"/> <!-- copy jar with deployed code over original --> <copy file="${maven.was40.ejb.out.file}" tofile="${maven.was40.ejb.file}"/> |
From: dion g. <dio...@us...> - 2004-03-23 01:30:20
|
diongillard 04/03/22 17:19:57 Modified: was40 plugin.jelly Log: - Remove unneeded paths - Put forward slash back Revision Changes Path 1.10 +2 -23 maven-plugins/was40/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was40/plugin.jelly,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- plugin.jelly 23 Mar 2004 00:28:59 -0000 1.9 +++ plugin.jelly 23 Mar 2004 01:19:57 -0000 1.10 @@ -218,34 +218,13 @@ <goal name="was40:generate-ejb-code" description="generate deployment and rmic code for an ejb jar"> <echo>Generating code for: '${maven.was40.ejb.file}' into '${maven.was40.ejb.out.file}'</echo> <!-- clean up working dir --> - <j:set var="workingDir" value="${maven.was40.workingDir}\ejbdeploy" /> + <j:set var="workingDir" value="${maven.was40.workingDir}/ejbdeploy" /> <delete dir="${workingDir}" failonerror="false"/> <mkdir dir="${workingDir}"/> <!-- create directory for output file --> <mkdir dir="${maven.build.dir}/was40"/> - <path id="ws_cp"> - <pathelement location="${maven.was40.home}/lib/xerces.jar"/> - <pathelement location="${maven.was40.home}/lib/ivjejb35.jar"/> - <pathelement location="${maven.was40.home}/lib/j2ee.jar"/> - <pathelement location="${maven.was40.home}/lib/vaprt.jar"/> - </path> - - <path id="ejbd_cp"> - <pathelement location="${maven.was40.home}/deploytool/itp/plugins/com.ibm.etools.ejbdeploy/runtime/batch.jar"/> - </path> - - <path id="itp_cp"> - <pathelement location="${maven.was40.home}/deploytool/itp/plugins/org.eclipse.core.boot/boot.jar"/> - </path> - - <path id="ejbdeploy.classpath"> - <path refid="ws_cp"/> - <path refid="ejbd_cp"/> - <path refid="itp_cp"/> - </path> - <property name="cpMaven" refid="maven.dependency.classpath"/> <exec executable="${maven.was40.ejbDeployer}" failonerror="true" dir="${workingDir}"> @@ -254,7 +233,7 @@ <arg value="${workingDir}" /> <arg value="${maven.was40.ejb.out.file}" /> <arg value='-cp' /> - <arg value="${cpMaven}" /> + <arg value='"${cpMaven}"' /> <arg line='${maven.was40.ejb.deployOptions}'/> </exec> </goal> |
From: dion g. <dio...@us...> - 2004-07-13 04:20:02
|
diongillard 04/07/12 21:19:56 Modified: was40/xdocs goals.xml was40 plugin.jelly Log: Fix typo in name of appserver in echo tag Revision Changes Path 1.3 +2 -6 maven-plugins/was40/xdocs/goals.xml Index: goals.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was40/xdocs/goals.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- goals.xml 1 Mar 2004 02:17:34 -0000 1.2 +++ goals.xml 13 Jul 2004 04:19:56 -0000 1.3 @@ -98,12 +98,8 @@ <description>Starts the specified Application Server <ul> <i>Required properties for this goal are:</i><br/> - <li> - ${maven.was40.node} - Name of the node in which the application server resides<br/> - </li> - <li> - ${maven.was40.appserver} - Name of the application server to start<br/> - </li> + <li>${maven.was40.node} - Name of the node in which the application server resides</li> + <li>${maven.was40.appserver} - Name of the application server to start</li> </ul> </description> </goal> 1.11 +2 -2 maven-plugins/was40/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was40/plugin.jelly,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- plugin.jelly 23 Mar 2004 01:19:57 -0000 1.10 +++ plugin.jelly 13 Jul 2004 04:19:56 -0000 1.11 @@ -145,13 +145,13 @@ <goal name="was40:start-appserver" description="Start a websphere application server"> - <echo>Starting Application Server: '${maven.was40.appserver.name}'</echo> + <echo>Starting Application Server: '${maven.was40.appserver}'</echo> <was40wscp:exec command="${maven.was40.appserver.start}" /> </goal> <goal name="was40:stop-appserver" description="Stop a websphere application server"> - <echo>Stopping Application Server: '${maven.was40.appserver.name}'</echo> + <echo>Stopping Application Server: '${maven.was40.appserver}'</echo> <was40wscp:exec command="${maven.was40.appserver.stop}" /> </goal> |
From: dion g. <dio...@us...> - 2004-07-13 06:40:49
|
diongillard 04/07/12 23:40:42 Modified: was40 plugin.jelly Log: Detab Remove echoing of output as it uses an ant property and multiple executions display the same message Revision Changes Path 1.12 +83 -120 maven-plugins/was40/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was40/plugin.jelly,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- plugin.jelly 13 Jul 2004 04:19:56 -0000 1.11 +++ plugin.jelly 13 Jul 2004 06:40:42 -0000 1.12 @@ -1,9 +1,9 @@ <?xml version="1.0"?> <project - xmlns:define="jelly:define" - xmlns:j="jelly:core" - xmlns:u="jelly:util" - xmlns:was40wscp="was40wscp"> + xmlns:define="jelly:define" + xmlns:j="jelly:core" + xmlns:u="jelly:util" + xmlns:was40wscp="was40wscp"> <!-- set up maven.was40.script --> <j:choose> @@ -30,37 +30,16 @@ <!-- set up some tags to make calling wscp easier --> <define:taglib uri="was40wscp"> - <!-- - ! Execute a command using the WebSphere Control Program - ! @param command the wscp command to execute - ! @param var (optional) a variable to set with the results of the execution - !--> + <!-- + ! Execute a command using the WebSphere Control Program + ! @param command the wscp command to execute + ! @param var (optional) a variable to set with the results of the execution + !--> <define:tag name="exec"> <j:if test="${empty(command)}"> <fail>attribute command must be provided</fail> </j:if> - <!-- - wscp.qualifyHomeName=true - wscp.remotePasswordFile= - wscp.remoteConnectionTimeout=300 - wscp.remoteConnectionsAllowed=true - wscp.remoteHostListAccept= - wscp.remoteHostListReject= - # - # set traceString to enable tracing - # - # wscp.traceString=com.ibm.ejs.sm.client.ui.desc.*=all=enabled - # wscp.traceString=com.ibm.ejs.sm.ejscp.*=all=enabled - ## - # Typically, these need to be set if only ContextExtension is loaded - # (otherwise, EjscpExtension sets them as noted above) - # - # com.ibm.CORBA.BootstrapHost=pc-dev1 - # com.ibm.CORBA.BootstrapPort=900 - # java.naming.factory.initial=com.ibm.ejs.ns.jndi.CNInitialContextFactory - --> - <!-- delete the properties file here and recreate it --> <delete file="${java.io.tmpdir}/was40.properties" /> <j:file name="${java.io.tmpdir}/was40.properties" omitXmlDeclaration="true" escapeText="false"> @@ -72,12 +51,12 @@ <!-- properties file --> <u:file name="${java.io.tmpdir}/was40.properties" var="props" /> <echo>Executing '${command}' using wscp</echo> - <exec executable="${maven.was40.script}" outputproperty="results"> - <arg value="-p" /> - <arg value="${props.canonicalPath}" /> + <exec executable="${maven.was40.script}" outputproperty="results"> + <arg value="-p" /> + <arg value="${props.canonicalPath}" /> <arg value="${maven.was40.wscpArgs}" /> - <arg value="${command}" /> - </exec> + <arg value="${command}" /> + </exec> <!-- test if arguments have been passed --> <j:if test="${empty(var)}"> @@ -90,128 +69,112 @@ </define:taglib> <!-- default goal --> - <goal name="was40" - description="Obtain the list of nodes on the WebSphere Application Server"> - <attainGoal name="was40:list-node" /> + <goal name="was40" description="Obtain the list of nodes on the WebSphere Application Server"> + <attainGoal name="was40:list-node" /> </goal> - <goal name="was40:start" - description="Starts the specified node."> - <echo>Staring Node: '${maven.was40.node}'</echo> - <exec executable="${maven.was40.startServer.script}" /> + <goal name="was40:start" description="Starts the specified node."> + <echo>Staring Node: '${maven.was40.node}'</echo> + <exec executable="${maven.was40.startServer.script}" /> </goal> - <goal name="was40:stop" - description="Stops the specified websphere node."> - <echo>Stopping node: '${maven.was40.node}'</echo> - <was40wscp:exec command="${maven.was40.stopNode}" /> + <goal name="was40:stop" description="Stops the specified websphere node."> + <echo>Stopping node: '${maven.was40.node}'</echo> + <was40wscp:exec command="${maven.was40.stopNode}" /> </goal> <goal name="was40:list-node" description="Obtain the list of nodes on the WebSphere Application Server"> - <echo>Retreiving a list of available Nodes...</echo> - <was40wscp:exec command="${maven.was40.listNode}"/> + <echo>Retreiving a list of available Nodes...</echo> + <was40wscp:exec command="${maven.was40.listNode}"/> </goal> - <goal name="was40:deploy-ear" - description="Deploy an enterprise application"> - - <echo>Deploying enterprise application: '${maven.was40.enterprise.app.name}'</echo> - <was40wscp:exec command="${maven.was40.deployApp}" /> + <goal name="was40:deploy-ear" description="Deploy an enterprise application"> + <echo>Deploying enterprise application: '${maven.was40.enterprise.app.name}'</echo> + <was40wscp:exec command="${maven.was40.deployApp}" /> </goal> - <goal name="was40:app-stop" - description="Stop an enterprise application"> - <echo>Stopping enterprise application: '${maven.was40.enterprise.app.name}'</echo> - <was40wscp:exec command="${maven.was40.stopApp}" /> - </goal> + <goal name="was40:app-stop" description="Stop an enterprise application"> + <echo>Stopping enterprise application: '${maven.was40.enterprise.app.name}'</echo> + <was40wscp:exec command="${maven.was40.stopApp}" /> + </goal> - <goal name="was40:undeploy-ear" - description="Remove an enterprise application"> - <echo>Removing enterprise application: '${maven.was40.enterprise.app.name}'</echo> - <was40wscp:exec command="${maven.was40.removeApp}" /> - </goal> + <goal name="was40:undeploy-ear" description="Remove an enterprise application"> + <echo>Removing enterprise application: '${maven.was40.enterprise.app.name}'</echo> + <was40wscp:exec command="${maven.was40.removeApp}" /> + </goal> - <goal name="was40:app-start" - description="Start enterprise application"> - <echo>Starting enterprise application: '${maven.was40.enterprise.app.name}'</echo> - <was40wscp:exec command="${maven.was40.startApp}" /> - </goal> + <goal name="was40:app-start" description="Start enterprise application"> + <echo>Starting enterprise application: '${maven.was40.enterprise.app.name}'</echo> + <was40wscp:exec command="${maven.was40.startApp}" /> + </goal> - <goal name="was40:deploy-to-servergroup" - description="Deploy an application to a server group"> - <echo>Deploying enterprise application to server group: '${maven.was40.serverGroup.name}'</echo> - <was40wscp:exec command="${maven.was40.servergroup.install}" /> + <goal name="was40:deploy-to-servergroup" description="Deploy an application to a server group"> + <echo>Deploying enterprise application to server group: '${maven.was40.serverGroup.name}'</echo> + <was40wscp:exec command="${maven.was40.servergroup.install}" /> </goal> - <goal name="was40:start-appserver" - description="Start a websphere application server"> - <echo>Starting Application Server: '${maven.was40.appserver}'</echo> - <was40wscp:exec command="${maven.was40.appserver.start}" /> + <goal name="was40:start-appserver" description="Start a websphere application server"> + <echo>Starting Application Server: '${maven.was40.appserver}'</echo> + <was40wscp:exec command="${maven.was40.appserver.start}" /> </goal> - <goal name="was40:stop-appserver" - description="Stop a websphere application server"> - <echo>Stopping Application Server: '${maven.was40.appserver}'</echo> - <was40wscp:exec command="${maven.was40.appserver.stop}" /> + <goal name="was40:stop-appserver" description="Stop a websphere application server"> + <echo>Stopping Application Server: '${maven.was40.appserver}'</echo> + <was40wscp:exec command="${maven.was40.appserver.stop}" /> </goal> - <goal name="was40:start-servergroup" - description="Start a websphere server group"> - <echo>Starting ServerGroup: '${maven.was40.serverGroup.name}'</echo> - <was40wscp:exec command="${maven.was40.servergroup.start}" /> + <goal name="was40:start-servergroup" description="Start a websphere server group"> + <echo>Starting ServerGroup: '${maven.was40.serverGroup.name}'</echo> + <was40wscp:exec command="${maven.was40.servergroup.start}" /> </goal> - <goal name="was40:stop-servergroup" - description="Stop a websphere server group"> - <echo>Stopping ServerGroup: '${maven.was40.serverGroup.name}'</echo> - <was40wscp:exec command="${maven.was40.servergroup.stop}" /> + <goal name="was40:stop-servergroup" description="Stop a websphere server group"> + <echo>Stopping ServerGroup: '${maven.was40.serverGroup.name}'</echo> + <was40wscp:exec command="${maven.was40.servergroup.stop}" /> </goal> <goal name="was40:list-apps" description="List the applications installed on this node"> - <echo>Obtaining a list of Enterprise applications for node: '${maven.was40.node}'</echo> - <was40wscp:exec command="${maven.was40.listEnterpriseApps}" /> + <echo>Obtaining a list of Enterprise applications for node: '${maven.was40.node}'</echo> + <was40wscp:exec command="${maven.was40.listEnterpriseApps}" /> </goal> <goal name="was40:app-show" description="Display extra information about the EAR"> - <echo>Obtaining Details about EAR: '${maven.was40.enterprise.app.name}'</echo> - <was40wscp:exec command="${maven.was40.enterpriseAppShow}" /> + <echo>Obtaining Details about EAR: '${maven.was40.enterprise.app.name}'</echo> + <was40wscp:exec command="${maven.was40.enterpriseAppShow}" /> </goal> <goal name="was40:regen" description="Regenerate the Plugin"> - <echo>Regenerating Plugin for node: '${maven.was40.node}'</echo> - <exec executable="${maven.was40.plugin}" outputproperty="results"> - <arg value="-adminNodeName" /> - <arg value="${maven.was40.primaryNode}" /> - <arg value="-nodeName" /> - <arg value="${maven.was40.node}" /> - </exec> - <echo>${results}</echo> + <echo>Regenerating Plugin for node: '${maven.was40.node}'</echo> + <exec executable="${maven.was40.plugin}"> + <arg value="-adminNodeName" /> + <arg value="${maven.was40.primaryNode}" /> + <arg value="-nodeName" /> + <arg value="${maven.was40.node}" /> + </exec> </goal> <goal name="was40:jndi-dump" description="Dump the appserver's JNDI namespace"> - <echo>Dumping [jndi] Namespace for node: '${maven.was40.node}'</echo> - <exec executable="${maven.was40.dumpNameSpace}" outputproperty="result"> - <arg value="-host" /> - <arg value="${maven.was40.node}" /> - <arg value="-port" /> - <arg value="${maven.was40.hostPort}" /> - </exec> - <echo>${result}</echo> + <echo>Dumping [jndi] Namespace for node: '${maven.was40.node}'</echo> + <exec executable="${maven.was40.dumpNameSpace}"> + <arg value="-host" /> + <arg value="${maven.was40.node}" /> + <arg value="-port" /> + <arg value="${maven.was40.hostPort}" /> + </exec> </goal> <goal name="was40:expand" description="Expand EAR into the ../installedApps/appName.ear directory"> - <echo>Expanding EAR: '${maven.was40.enterprise.app.name}' into '${maven.was40.expandDir}/${maven.was40.enterprise.app.name}.ear'</echo> - <exec executable="${maven.was40.earExpander}" outputproperty="results"> - <arg value="-ear" /> - <arg value="${maven.was40.enterprise.app}" /> - <arg value="-expandDir" /> - <arg value="${maven.was40.expandDir}/${maven.was40.enterprise.app.name}.ear" /> - <arg value="-operation" /> - <arg value="expand" /> - <arg value="-expansionFlags" /> - <arg value="all" /> - </exec> - <echo>${results}</echo> + <echo>Expanding EAR: '${maven.was40.enterprise.app.name}' into '${maven.was40.expandDir}/${maven.was40.enterprise.app.name}.ear'</echo> + <exec executable="${maven.was40.earExpander}"> + <arg value="-ear" /> + <arg value="${maven.was40.enterprise.app}" /> + <arg value="-expandDir" /> + <arg value="${maven.was40.expandDir}/${maven.was40.enterprise.app.name}.ear" /> + <arg value="-operation" /> + <arg value="expand" /> + <arg value="-expansionFlags" /> + <arg value="all" /> + </exec> </goal> <!-- generate deployment and rmic code for an ejb jar --> |
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 |
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-08-26 23:30:21
|
diongillard 04/08/26 16:30:14 Modified: was40 plugin.jelly Log: remove quotes around the classpath Revision Changes Path 1.15 +1 -1 maven-plugins/was40/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was40/plugin.jelly,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- plugin.jelly 20 Jul 2004 06:17:15 -0000 1.14 +++ plugin.jelly 26 Aug 2004 23:30:14 -0000 1.15 @@ -208,7 +208,7 @@ <arg value="${workingDir}" /> <arg value="${maven.was40.ejb.out.file}" /> <arg value='-cp' /> - <arg value='"${cpMaven}"' /> + <arg value='${cpMaven}' /> <arg line='${maven.was40.ejb.deployOptions}'/> </exec> </goal> |