build_exslt.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:p5exslt="http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/exslt/p5exslt.xsd"
  3. basedir="../../."
  4. default="default"
  5. name="exslt">
  6. <include as="PRODUCT" file="build.p5exslt.PRODUCT.xml"/>
  7. <include as="SYSTEM" file="build.p5exslt.SYSTEM.xml"/>
  8. <include as="INSTALL" file="build.p5exslt.INSTALL.xml"/>
  9. <include as="WPS_Functions" file="../build.WPS_Functions.PRODUCT.xml"/>
  10. <include file="../system_ui_info_speech/build.system_ui_info_speech.PRODUCT.xml"/>
  11. <target depends="PRODUCT.PRODUCT,INSTALL.INSTALL" name="default"/>
  12. <target description="test usage of default xslt template for module"
  13. name="xsl-test">
  14. <xslt basedir="${p5exslt.basedir}"
  15. destdir="${p5exslt.temp}"
  16. force="true"
  17. in="${p5exslt.INSTALL.install_example}"
  18. out="${p5exslt.temp}/INSTALL.install_example.xsl-test.xml"
  19. style="${p5exslt.xsl}">
  20. <factory name="net.sf.saxon.TransformerFactoryImpl">
  21. <attribute name="http://saxon.sf.net/feature/xinclude-aware" value="true"/>
  22. <attribute name="http://saxon.sf.net/feature/initialMode"
  23. value="{http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/exslt/p5exslt.xsd}INSTALL.install_example.xsl-test.xml"/>
  24. <attribute name="http://saxon.sf.net/feature/dtd-validation-recoverable"
  25. value="true"/>
  26. </factory>
  27. <param expression="${p5exslt.basedir}"
  28. name="{http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/exslt/p5exslt.xsd}basedir"/>
  29. <param expression="${p5exslt.repository}"
  30. name="{http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/exslt/p5exslt.xsd}repository"/>
  31. <param expression="${p5exslt.temp}"
  32. name="{http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/exslt/p5exslt.xsd}temp"/>
  33. <classpath location="/opt/local/share/java/saxon9he.jar"/>
  34. <xmlcatalog refid="dita-ot.dtd.catalog"/>
  35. </xslt>
  36. </target>
  37. </project>