This is probably something simple, but.... my support task doesn't seem to
work. My resultant jar file does not include the files i specified.
Ideas? Using ant1.4 beta2 and jdk1.3.1 on win2k.
<target name="deploy2" depends="init, compileProject">
<ejbjar descriptordir="${src.dir}/${project.path.ejb}"
srcdir="${build.dir}"
basejarname="AppServer-Deploy">
<weblogic destdir="${dist.dir}"
keepgeneric="true"
rebuild="false"
newCMP="false">
<classpath refid="project.class.path"/>
<wlclasspath refid="ejb.descriptor.build.classpath"/>
</weblogic>
<include name="ejb-jar.xml"/>
<exclude name="weblogic-ejb-jar.xml"/>
<support dir="${src.dir}">
<include name="${project.path}/**/*.class"/>
</support>
</ejbjar>
</target>
T Master