I'm using the ant task below and I don't get the HTML pages generated. I do get all of the XML files generated and I can copy over the stylesheets, but I don't get anything that has the nice frameset in it. Any ideas what is going on?
Thanks, Don
<target name="all"> <delete dir="${test.reports.jcsc}"/> <mkdir dir="${test.reports.jcsc}"/> <jcsc rules="./bin/tasks/jcsc/rules/jcsc.jcsc" startpackage="com" destdir="${test.reports.jcsc}" resultsformatter="rj.tools.jcsc.XMLResultsFormatter" worstcount="20"> <fileset dir="${src.dir}"> <include name="**/*.java"/> </fileset> <fileset dir="${test.src}"> <include name="com/**/*.java"/> </fileset> </jcsc> </target>
JCSC does not generate HTML it only generates XML this XML is then translated to HTML within the browser (IE or Mozilla) using the XSL.
Log in to post a comment.
I'm using the ant task below and I don't get the HTML pages generated. I do get all of the XML files generated and I can copy over the stylesheets, but I don't get anything that has the nice frameset in it. Any ideas what is going on?
Thanks,
Don
<target name="all">
<delete dir="${test.reports.jcsc}"/>
<mkdir dir="${test.reports.jcsc}"/>
<jcsc rules="./bin/tasks/jcsc/rules/jcsc.jcsc"
startpackage="com"
destdir="${test.reports.jcsc}"
resultsformatter="rj.tools.jcsc.XMLResultsFormatter"
worstcount="20">
<fileset dir="${src.dir}">
<include name="**/*.java"/>
</fileset>
<fileset dir="${test.src}">
<include name="com/**/*.java"/>
</fileset>
</jcsc>
</target>
JCSC does not generate HTML it only generates XML this XML is then translated to HTML within the browser (IE or Mozilla) using the XSL.