wsruntime=C:/Program Files/IBM/WebSphere Studio/Application Developer/v5.1.1/runtimes/base_v51
wslib=C:/Program Files/IBM/WebSphere Studio/Application Developer/v5.1.1/runtimes/base_v51/lib
wstools=C:/Program Files/IBM/WebSphere Studio/Application Developer/v5.1.1/wstools/eclipse/plugins/com.ibm.etools.ejbdeploy_5.1.1/runtime
<path id="ejbdeploy.classpath">
<pathelement location="${wslib}/deployutils.jar"/>
<pathelement location="${wslib}/wsanttasks.jar"/>
<pathelement location="${wsruntime}/java/jre/lib/ext/ibmorb.jar"/>
<pathelement location="$wstools}/batch.jar"/>
<pathelement location="$wstools}/codegen.jar"/>
<pathelement location="$wstools}/ejbdeploy.jar"/>
<pathelement location="$wstools}/ejbincrement.jar"/>
<pathelement location="$wstools}/ejbvalidator.jar"/>
<pathelement location="$wstools}/exec.jar"/>
<pathelement location="$wstools}/rmic.jar"/>
</path>
<target name="rmicMyEjb">
<taskdef name="wsejbdeploy" classname="com.ibm.websphere.ant.tasks.WsEjbDeploy" classpath="${wslib}/wsanttasks.jar"/>
<wsejbdeploy inputJar="${project.build.jar}/MyEjb.jar"
wasHome="${wsruntime}"
outputJar="${project.build.jar}/MyDeployable_Ejb.jar"
classpathref="ejbdeploy.classpath"
trace="true"
codegen="true"
rmicOptions="-verbose"/>
</target>
I got the error:
[wsejbdeploy] The java class is not found: com/ibm/etools/ejbdeploy/EJBDeploy
Does any one know where is this class com/ibm/etools/ejbdeploy/EJBDeploy OR is there any thing I missed.
Thanks.