/bundles/plugins-trunk/TextTools/build.xml

# · XML · 25 lines · 14 code · 3 blank · 8 comment · 0 complexity · 9bc3e3199632d7cf905f6ef2c9e33587 MD5 · raw file

  1. <?xml version="1.0"?>
  2. <!--
  3. This build.xml file for building the TextTools plugin is based
  4. upon the model file used for building the QuickNotepad plugin.
  5. A build.properties file is required to define the developer's build
  6. environment.
  7. -->
  8. <project name="TextTools" default="build">
  9. <description>
  10. This is an ant build.xml file for building the TextTools plugin for jEdit.
  11. </description>
  12. <property file="../build.properties" />
  13. <property file="build.properties" />
  14. <property name="user-doc.xml" location = "users-guide.xml"/>
  15. <property name="docs-proc.target" value="none" />
  16. <import file="${build.support}/plugin-build.xml" />
  17. <!-- Help is not build but exists as an html file -->
  18. <selector id="packageFiles">
  19. <filename name="TextTools.html" />
  20. </selector>
  21. </project>