Hey,
I am currently trying to convert a test project into ant. I now use
Makefiles and do the following to create a entitybean.jar
1. compile classes to $(buildtemp)
2. mkdir $(buildtemp)\META-INF
3. copy *.xml to $(buildtemp)
4. from $(buildtemp), jar -cvf tmp.jar MYPACKAGE META-INF
5. java -classpath WEBLOGICCLASSPATH -Dweblogichome weblogic.ejbc tmp.jar
entitybean.jar
I have been trying to convert this to ant but am having problems. I got it
to create a jar, but it only contained the compiled entitybean classes and
not the xml, nor did it run weblogic. How does the built in ant tasks EJBC
and EJBJAR break up the work?
any help would be great.
thanks