Reputation: 195
The only working method I found, several years ago, was :
But I feel there must be a cleaner method. Which is yours ?
Upvotes: 1
Views: 2827
Reputation: 1932
i use the wsejbdeploy ant task, if you are using ws_ant that comes with RAD then you can have something like the below in your build file
<taskdef name="wsejbdeploy" classname="com.ibm.websphere.ant.tasks.WsEjbDeploy"/>
<wsejbdeploy inputJar="${EjbJarFile}" outputJar="${tempEjbJarFile}" workingDirectory="${tempWS.dir}" noWarnings="true" classpathref="project.classpath"/>
Upvotes: 1