This week's book giveaway is in the General Computing forum.
We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line!
See this thread for details.
The moose likes Websphere and the fly likes How to specify ejbdeploy classpath arugement in Ant Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Products » Websphere
Reply Bookmark "How to specify ejbdeploy classpath arugement in Ant" Watch "How to specify ejbdeploy classpath arugement in Ant" New topic
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
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: How to specify ejbdeploy classpath arugement in Ant
 
Similar Threads
Error starting EJBDeploy environment: null.
generating deployment code for websphere using Ant's ejbjar
EJB Task--ejbjar error
using ant to generate ejb deploy code
The project was not built since its build path is incomplete Websphere error