<project name="XSLT ANT Task Test" default="transform" basedir=".">

  <!-- set global properties for this build -->
  <property name="src" value="."/>
  <property name="build" value="."/>

  <target name="init">
    <!-- Create the time stamp -->
    <tstamp/>
  </target>

  <target name="transform" depends="init">
    <!--  <get dest="${src}" src="http://dblp.uni-trier.de/xml/dblp_bht.xml" verbose="true"/> -->
    <xslt basedir="${src}" destdir="${build}" includes="dblp_bht.xml"
		extension=".txt" style="dblp2html.xsl">
    </xslt>
   </target>  
</project>

