I am running ant1.6.2. I have downloaded xalan-j_2_6_0-bin.zip. Extracted xalan.jar into apache-ant-1.6.2\lib directory. I am running the following script:
<project name="sampling" default="test"> <property name="src.dir" location="src"/> <property name="src.java.dir" location="${src.dir}/java"/> <property name="src.test.dir" location="${src.dir}/test"/> <property name="target.dir" location="target"/> <property name="target.classes.java.dir" location="${target.dir}/classes/java"/> <property name="target.classes.test.dir" location="${target.dir}/classes/test"/> <property name="target.report.dir" location="${target.dir}/report"/> <property name="junit.jar" location="C:\java_lib\junit3.8.1/lib/junit.jar"/> <property name="junit.dir" location="C:\java_lib\junit3.8.1/lib"/> <target name="compile.java"> <mkdir dir="${target.classes.java.dir}"/> <javac destdir="${target.classes.java.dir}"> <src path="${src.java.dir}"/> </javac> </target> <target name="compile.test" depends="compile.java"> <mkdir dir="${target.classes.test.dir}"/> <javac destdir="${target.classes.test.dir}"> <src path="${src.test.dir}"/> <classpath> <pathelement location="${target.classes.java.dir}"/> <pathelement location="${junit.jar}"/> </classpath> </javac> </target> <target name="compile" depends="compile.java,compile.test"/> <path id="junit.cp"> <fileset dir="${junit.dir}"> <include name="junit.jar"/> </fileset> <fileset dir="${junit.dir}"> <include name="ant-junit.jar"/> </fileset> </path> <taskdef name="junit" classname="org.apache.tools.ant.taskdefs.optional.junit.JUnitTask" classpathref="junit.cp"/> <target name="test" depends="compile"> <mkdir dir="${target.report.dir}"/> <property name="tests" value="TestAccount"/> <junit printsummary="yes" haltonerror="yes" haltonfailure="yes" fork="yes"> <!-- formatter type="plain" usefile="false"/ --> <formatter type="xml"/> <batchtest todir="${target.report.dir}"> <fileset dir="${src.test.dir}"> <include name="**/${tests}.java"/> <exclude name="**/Test*All.java"/> </fileset> </batchtest> <classpath> <pathelement location="${target.classes.java.dir}"/> <pathelement location="${target.classes.test.dir}"/> <!-- pathelement path="${ant.home}/lib/clover.jar"/ --> <pathelement location="${junit.jar}"/> </classpath> </junit> </target> <target name="report" depends="test"> <mkdir dir="${target.report.dir}/html"/> <junitreport todir="${target.report.dir}"> <fileset dir="${target.report.dir}"> <include name="TEST-*.xml"/> </fileset> <report todir="${target.report.dir}/html"/> </junitreport> </target> <target name="clean"> <delete dir="${target.dir}"/> </target> </project> For report task I am getting the following error: Buildfile: build.xml Trying to override old definition of datatype junit compile.java: compile.test: compile: test: [junit] Running TestAccount [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.375 sec report: BUILD FAILED C:\junitdemo\build.xml:76: Could not create task or type of type: junitreport. Ant could not find the task or a class this task relies upon. This is common and has a number of causes; the usual solutions are to read the manual pages then download and install needed JAR files, or fix the build file: - You have misspelt 'junitreport'. Fix: check your spelling. - The task needs an external JAR file to execute and this is not found at the right place in the classpath. Fix: check the documentation for dependencies. Fix: declare the task. - The task is an Ant optional task and the JAR file and/or libraries implementing the functionality were not found at the time you yourself built your installation of Ant from the Ant sources. Fix: Look in the ANT_HOME/lib for the 'ant-' JAR corresponding to the task and make sure it contains more than merely a META-INF/MANIFEST.MF. If all it contains is the manifest, then rebuild Ant with the needed libraries present in ${ant.home}/lib/optional/ , or alternatively, download a pre-built release version from apache.org - The build file was written for a later version of Ant Fix: upgrade to at least the latest release version of Ant - The task is not an Ant core or optional task and needs to be declared using <taskdef>. - You are attempting to use a task defined using <presetdef> or <macrodef> but have spelt wrong or not defined it at the point of use Remember that for JAR files to be visible to Ant tasks implemented in ANT_HOME/lib, the files must be in the same directory or on the classpath Please neither file bug reports on this problem, nor email the Ant mailing lists, until all of these causes have been explored, as this is not an Ant bug. Total time: 1 second --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]