Karl Hauschildt

Greenhorn
+ Follow
since Mar 17, 2003
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Karl Hauschildt

Thank you for the suggestion but it did not work.
The complaint is pretty specific in that it states: "Unable to load dependency analyzer: org.apache.tools.ant.util.depend
.bcel.AncestorAnalyzer"
I can locate that class in the ANT package provide optional.jar. It does not exist in the bcel.jar.
My feeling is I am up against a classpath problem but can't put my finger on it yet.
21 years ago
I get teh followng error when my build starts the ejbjar task:[ejbjar] Unable to load dependency analyzer: org.apache.tools.ant.util.depend
.bcel.AncestorAnalyzer
The snipit form the buildfile is:
<ejbjar srcdir="${CCBase}/FIISCBSAppEJB/ejbModule" classpath="${CL_PATH}">
<websphere ejbdeploy="true"
oldCMP="false"
tempdir="/tmp"
destdir="${earTip}">
<wasclasspath>
<pathelement location="${websphere.home}/deploytool/itp/plugins/org.eclipse.core.boot/boot.jar"/>
<pathelement location="${websphere.home}/deploytool/itp/plugins/com.ibm.etools.ejbdeploy/runtime/batch.jar"/>
<pathelement location="${websphere.home}/lib/xerces.jar"/>
<pathelement location="${websphere.home}/lib/ivjejb35.jar"/>
<pathelement location="${websphere.home}/lib/j2ee.jar"/>
<pathelement location="${websphere.home}/lib/vaprt.jar"/>
<pathelement location="${ANTJARS}"/>
</wasclasspath>
<classpath path="${CL_PATH}"/>
</websphere>
</ejbjar>
and ${CL_PATH} does include the 3 or 4 jars in the Ant 1.5 distribution among them is optiona.jar where the AncestorAnalyser class lives.
Amy suggestions greatly appreciated!
21 years ago