PageRenderTime 40ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

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

#
XML | 33 lines | 16 code | 8 blank | 9 comment | 0 complexity | 284469031d7b11f657571779fee73a68 MD5 | raw file
Possible License(s): BSD-3-Clause, AGPL-1.0, Apache-2.0, LGPL-2.0, LGPL-3.0, GPL-2.0, CC-BY-SA-3.0, LGPL-2.1, GPL-3.0, MPL-2.0-no-copyleft-exception, IPL-1.0
  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. <property name="version" value="2.5" />
  13. <import file="${build.support}/plugin-build.xml" />
  14. <selector id="packageFiles">
  15. <or>
  16. <filename name="xinsert.dtd"/>
  17. <filename name="*.html"/>
  18. <filename name="images/*.gif"/>
  19. <filename name="xml/*.insert.xml"/>
  20. </or>
  21. </selector>
  22. <!-- we have no doc/users-guide.xml -->
  23. <target name="docs-xsltproc" />
  24. </project>