Unable to run the Ant junitreport task with JDeveloper 10.1.3.0.3
I'm getting this error message when running the junitreport task:
BUILD FAILED
D:\dev\Promotions\AEFramework\build.xml:153: Could not find a valid processor version implementation from oracle.xml.jaxp.JXSAXTransformerFactory
Here is how the ant task looks like:
<target name="test-report" depends="test">
<junitreport todir="${unittest.reports}">
<fileset dir="${unittest.reports}">
<include name="TEST-*.xml" />
</fileset>
<report todir="${unittest.reports}" />
</junitreport>
</target>
I copied the Xalan 2.7 jar files under jdev/lib but it didn't help. Any ideas?