-
Notifications
You must be signed in to change notification settings - Fork 34
/
BuildPlugin.xml
33 lines (25 loc) · 1.31 KB
/
BuildPlugin.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
<!--
usage : java -jar <eclipse launcher jar> -application org.eclipse.ant.core.antRunner -data <workspace dir> -buildfile plugin.xml
example : java -jar C:\eclipse\plugins\org.eclipse.equinox.launcher_1.0.101.R34x_v20081125.jar -application org.eclipse.ant.core.antRunner -data "workspace" -buildfile BuildPlugin.xml
-->
<project default="main">
<target name="main">
<property name="baseLocation" value="${eclipse.home}"/>
<property name="buildspace.dir" value="${basedir}" />
<property name="builder" value="${buildspace.dir}" />
<property name="buildDirectory" value="${buildspace.dir}/GrxUIonEclipse-project-0.9.8"/>
<property name="pluginPath" value="${buildspace.dir}" />
<eclipse.buildScript
elements="[email protected]"
baseLocation="${baseLocation}"
buildDirectory="${buildDirectory}"
/>
<ant antfile="${buildDirectory}/build.xml" dir="${buildDirectory}" target="build.update.jar" >
<property name="javacTarget" value="1.6"/>
<property name="javacSource" value="1.6"/>
</ant>
<copy todir="./">
<fileset dir="${buildDirectory}" includes="com.generalrobotix.ui.grxui*.jar"/>
</copy>
</target>
</project>