<?xml version="1.0" encoding="UTF-8"?> | |
<project | |
name="xsl-conversion" | |
default="main" | |
basedir="."> | |
<target | |
name="main" | |
description="example.@dot.xml to produce example.@dot.html"> | |
<xslt | |
destdir="${resultDir}/compilelogs" | |
scanincludeddirectories="true" | |
style="compilerXMLOutputToHTML.xsl" | |
force="true" > | |
<fileset dir="${resultDir}/compilelogs" includes="**/*.xml" /> | |
</xslt> | |
</target> | |
</project> |