stevel 2003/01/13 21:22:53 Modified: java/xmls taskdefs_post_compile.xml Log: next bit of blind debugging. Since the only recent changes to ant are on the subject of classloaders, and by setting the loaderref of task and type defn, you force reuse of the prior loader, we can reuse the old loader...one that should work and then reject the re-typedeffing. Revision Changes Path 1.3 +4 -4 xml-axis/java/xmls/taskdefs_post_compile.xml Index: taskdefs_post_compile.xml =================================================================== RCS file: /home/cvs/xml-axis/java/xmls/taskdefs_post_compile.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- taskdefs_post_compile.xml 27 Aug 2002 17:05:53 -0000 1.2 +++ taskdefs_post_compile.xml 14 Jan 2003 05:22:53 -0000 1.3 @@ -1,16 +1,16 @@ <taskdef name="foreach" classname="org.apache.axis.tools.ant.foreach.ForeachTask"> - <classpath refid="classpath"/> + <classpath refid="classpath"loaderref="axis" /> </taskdef> <taskdef name="runaxisfunctionaltests" classname="org.apache.axis.tools.ant.axis.RunAxisFunctionalTestsTask"> - <classpath refid="classpath" /> + <classpath refid="classpath" loaderref="axis" /> </taskdef> <taskdef name="wsdl2java" classname="org.apache.axis.tools.ant.wsdl.Wsdl2javaAntTask"> - <classpath refid="classpath" /> + <classpath refid="classpath" loaderref="axis" /> </taskdef> <taskdef name="java2wsdl" classname="org.apache.axis.tools.ant.wsdl.Java2WsdlAntTask"> - <classpath refid="classpath" /> + <classpath refid="classpath" loaderref="axis" /> </taskdef>