| Author |
How to specify ejbdeploy classpath arugement in Ant
|
Simon Song
Ranch Hand
Joined: Feb 01, 2002
Posts: 217
|
|
I follow the Ant sample from SG246134, but I need specify the classpath for ejbdeploy. I just failed to make it in the Ant, the arguments cannot be appended correctly. Any suggestion? <target name="deploy" unless="ejb.deploy.uptodate"> <echo>Deploying EJB JAR file</echo> <exec executable="${global.was.dir}/bin/ejbdeploy.bat" dir="${global.was.dir}/bin"> <arg value="${ejb.jar.file}"/> <arg value="${global.temp.dir}"/> <arg value="${global.temp.dir}/${ejb.jar.name}"/> <arg value='-cp "d:\lib\log4j.jar;d:\lib\parser.jar"'/> <arg value="-quiet"/> </exec> <move file="${global.temp.dir}/${ejb.jar.name}" tofile="${ejb.jar.file}"/> <echo>Finished deploying EJB JAR file</echo> </target>
|
Simon Song
Certified Entperise Developer of Websphere
|
 |
 |
|
|
subject: How to specify ejbdeploy classpath arugement in Ant
|
|
|