/plugins/XInsert/tags/release-2_1/build.xml

# · XML · 28 lines · 14 code · 6 blank · 8 comment · 0 complexity · 17277912100501bd6b8209cc89516c1c MD5 · raw file

  1. <?xml version="1.0"?>
  2. <!--
  3. This is the build.xml file for building the XInsert plugin with 'ant'.
  4. It makes use of the standard import file 'plugin-build.xml',
  5. normally found in the jEdit/build-support directory in the jEdit code
  6. The property "build.support" should be defined in a "build.properties" file
  7. and point to the import file.
  8. -->
  9. <project name="XInsert" default="dist" basedir=".">
  10. <property file="build.properties"/>
  11. <property file="../build.properties"/>
  12. <import file="${build.support}/plugin-build.xml" />
  13. <selector id="packageFiles">
  14. <or>
  15. <filename name="xinsert.dtd"/>
  16. <filename name="*.html"/>
  17. <filename name="images/*.gif"/>
  18. <filename name="xml/*.insert.xml"/>
  19. </or>
  20. </selector>
  21. </project>