I've seen questions for this posted...but there doesn't seem to be any
definate answers.
I keep getting the aforementioned warning...the jars seem to build anyway...
what does it mean in the context of ant's build process?
I've played around w/ numerous variations of the classpath and include
elements...no positive results, except when ant cannot locate my ejb-jar.xml
then I don't get the persnikety warning/error...but no jar either...poo
heres an excerpt from the ejbjar task from my build.xml:
<ejbjar descriptordir="." basejarname="${bean.name}"
srcdir="${build.dir}">
<include name="*-jar.xml"/>
<classpath>
<pathelement path="${wl.classpath}"/>
<pathelement path="${jar.classpath}"/>
</classpath>
<weblogic destdir="${ejb.dir}" rebuild="false"
compiler="${build.compiler}" newCMP="true">
<classpath>
<pathelement path="${wl.classpath}"/>
<pathelement path="${jar.classpath}"/>
</classpath>
</weblogic>
</ejbjar>