/bundles/plugins-trunk/TextTools/build.xml
XML | 25 lines | 14 code | 3 blank | 8 comment | 0 complexity | 9bc3e3199632d7cf905f6ef2c9e33587 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<!--
4 This build.xml file for building the TextTools plugin is based
5 upon the model file used for building the QuickNotepad plugin.
6
7 A build.properties file is required to define the developer's build
8 environment.
9-->
10
11<project name="TextTools" default="build">
12 <description>
13 This is an ant build.xml file for building the TextTools plugin for jEdit.
14 </description>
15 <property file="../build.properties" />
16 <property file="build.properties" />
17 <property name="user-doc.xml" location = "users-guide.xml"/>
18 <property name="docs-proc.target" value="none" />
19 <import file="${build.support}/plugin-build.xml" />
20
21 <!-- Help is not build but exists as an html file -->
22 <selector id="packageFiles">
23 <filename name="TextTools.html" />
24 </selector>
25</project>