This repository has been archived by the owner on Aug 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 127
/
build.xml
142 lines (111 loc) · 4.64 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (C) 2005 - 2020 Eric Van Dewoestine
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<project name="eclim" default="deploy" basedir=".">
<property file="user.properties"/>
<target name="clean" description="Deletes the build directory.">
<delete dir="build"/>
<delete file="org.eclim/nailgun/ng"/>
</target>
<target name="build" description="Build eclim without deploying">
<antcall target="gant"> <param name="target" value="build"/> </antcall>
</target>
<target name="deploy"
description="(Default) Build and deploy the eclipse and vim plugins.">
<antcall target="gant"> <param name="target" value="deploy"/> </antcall>
</target>
<target name="deploy.eclipse"
description="Build and deploy only the eclipse plugins.">
<antcall target="gant"> <param name="target" value="deploy.eclipse"/> </antcall>
</target>
<target name="deploy.vim"
description="Build and deploy only the vim plugins.">
<antcall target="gant"> <param name="target" value="deploy.vim"/> </antcall>
</target>
<target name="checkstyle" description="Runs checkstyle on the eclim source files.">
<antcall target="gant"> <param name="target" value="checkstyle"/> </antcall>
</target>
<target name="plugin.create" description="Initialize a new eclim plugin">
<antcall target="gant"> <param name="target" value="plugin.create"/> </antcall>
</target>
<target name="build.eclipse.plugin">
<antcall target="gant"> <param name="target" value="build.eclipse.plugin"/> </antcall>
</target>
<target name="test">
<antcall target="gant"> <param name="target" value="test"/> </antcall>
</target>
<target name="test.core">
<antcall target="gant"> <param name="target" value="org.eclim.core.test"/> </antcall>
</target>
<target name="test.jdt">
<antcall target="gant"> <param name="target" value="org.eclim.jdt.test"/> </antcall>
</target>
<target name="test.wst">
<antcall target="gant"> <param name="target" value="org.eclim.wst.test"/> </antcall>
</target>
<target name="test.pydev">
<antcall target="gant"> <param name="target" value="org.eclim.pydev.test"/> </antcall>
</target>
<target name="dist" depends="clean">
<antcall target="gant"> <param name="target" value="dist"/> </antcall>
</target>
<target name="installer">
<antcall target="gant"> <param name="target" value="installer"/> </antcall>
</target>
<target name="javadoc">
<antcall target="gant"> <param name="target" value="javadoc"/> </antcall>
</target>
<target name="docs">
<antcall target="gant"> <param name="target" value="docs"/> </antcall>
</target>
<target name="vimdocs">
<antcall target="gant"> <param name="target" value="vimdocs"/> </antcall>
</target>
<target name="eclipse.init">
<antcall target="gant"> <param name="target" value="eclipse.init"/> </antcall>
</target>
<target name="eclipse.gc">
<antcall target="gant"> <param name="target" value="eclipse.gc"/> </antcall>
</target>
<target name="eclipse.docs">
<antcall target="gant"> <param name="target" value="eclipse.docs"/> </antcall>
</target>
<target name="eclipse.src">
<antcall target="gant"> <param name="target" value="eclipse.src"/> </antcall>
</target>
<target name="patch">
<antcall target="gant"> <param name="target" value="patch"/> </antcall>
</target>
<target name="patch.revert">
<antcall target="gant"> <param name="target" value="patch.revert"/> </antcall>
</target>
<target name="gant">
<antversion property="ant.version.valid" atleast="1.7.1"/>
<fail unless="ant.version.valid">
To build eclim, you must use ant 1.7.1 or greater.
</fail>
<taskdef name="gant" classname="org.codehaus.gant.ant.Gant">
<classpath>
<fileset dir="ant/lib" includes="**/*.jar"/>
<fileset dir="org.eclim" includes="lib/*.jar"/>
</classpath>
</taskdef>
<property name="target" value="deploy"/>
<gant
file="ant/build.gant"
target="${target}"
inheritAll="true"
/>
</target>
</project>