/plugins/XInsert/tags/release-2_1/build.xml
# · XML · 28 lines · 14 code · 6 blank · 8 comment · 0 complexity · 17277912100501bd6b8209cc89516c1c MD5 · raw file
- <?xml version="1.0"?>
-
- <!--
- This is the build.xml file for building the XInsert plugin with 'ant'.
-
- It makes use of the standard import file 'plugin-build.xml',
- normally found in the jEdit/build-support directory in the jEdit code
- The property "build.support" should be defined in a "build.properties" file
- and point to the import file.
- -->
-
- <project name="XInsert" default="dist" basedir=".">
-
- <property file="build.properties"/>
- <property file="../build.properties"/>
-
- <import file="${build.support}/plugin-build.xml" />
-
- <selector id="packageFiles">
- <or>
- <filename name="xinsert.dtd"/>
- <filename name="*.html"/>
- <filename name="images/*.gif"/>
- <filename name="xml/*.insert.xml"/>
- </or>
- </selector>
-
- </project>