forked from elek/antelope
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin-build.xml
23 lines (19 loc) · 937 Bytes
/
plugin-build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!-- ================================================== -->
<!-- Build file for the Antelope plugin -->
<!-- :tabSize=4:indentSize=4:noTabs=false: -->
<!-- :folding=explicit:collapseFolds=1: -->
<!-- ================================================== -->
<project name="Antelope" default="build" basedir=".">
<property file="../build.properties" />
<property file="build.properties" />
<property name="javadoc.packagenames" value="ise.antelope.*" />
<property name="plugin.dependencies" value="ErrorList,Console" />
<property name="dist.target" value="dist.complete" />
<import file="../plugins/build-support/plugin-build.xml" />
<!-- Add needed plugins to the classpath. -->
<path id="project.class.path">
<pathelement location="${install.dir}/Console.jar" />
<pathelement location="${install.dir}/ErrorList.jar" />
<pathelement location="lib/gef.jar" />
</path>
</project>