-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
74 lines (63 loc) · 2.25 KB
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?xml version="1.0" ?>
<project name="LuaJShell" default="package" basedir=".">
<!--
conditional on the operating system
https://alvinalexander.com/blog/post/java/how-conditional-operation-ant-script-operating-system
-->
<!-- <echo message="${os.name}" /> -->
<condition property="os.nickname" value="win">
<os family="windows" />
</condition>
<condition property="os.nickname" value="lin">
<os family="unix" />
</condition>
<condition property="os.nickname" value="mac">
<os family="mac" />
</condition>
<!-- <echo message="os nickname is ${os.nickname}"/> -->
<property file="build-${os.nickname}.properties" />
<!--
<property file="build.properties" />
<property file="../build.properties" />
-->
<property name="compiler.source" value="1.8" />
<property name="compiler.target" value="1.8" />
<property name="src.dir" value="src" />
<!-- Documentation process
none: if you supply your own html file as this template does.
xsltproc: if you plan on using docbook
-->
<property name="docs-proc.target" value="xsltproc" />
<property name="plugin.version" value="1.1.0" />
<!-- jEdit installation properties. -->
<!-- mark:properties -->
<!-- /mark:properties -->
<import file="${build.support}/plugin-build.xml" />
<!-- If you want any extra files to be included with your plugin's jar,
such as custom images, you need to specify them here. -->
<!--
<selector id="packageFiles">
</selector>
-->
<!-- Add your plugin's specific dependencies here -->
<path id="project.class.path">
<!-- Dependencies that are bundled with your plugin.
These should also be represented in your props file under the,
"plugin.[plugin class].jars" property. -->
<!-- <pathelement path="lib/dependency.jar" /> -->
<!-- mark:libs -->
<!-- /mark:libs -->
<!-- Dependencies that are supplied by other plugins. -->
<!-- <pathelement path="${jedit.plugins.dir}/dependency.jar" /> -->
<!-- mark:plugins -->
<pathelement path="${jedit.plugins.dir}/Console.jar" />
<pathelement path="${jedit.plugins.dir}/ProcessShell.jar" />
<pathelement path="${jedit.plugins.dir}/LuaJPlugin.jar" />
<pathelement path="${jedit.plugins.dir}/Classpath.jar" />
<!-- /mark:plugins -->
</path>
</project>
<!-- ::mode=xml:: -->
<!--
d:\tools\apache-ant-1.10.3\bin\ant.bat
-->