-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathconfigure.xml
More file actions
47 lines (43 loc) · 1.87 KB
/
configure.xml
File metadata and controls
47 lines (43 loc) · 1.87 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<project name="java2script" default="configure" basedir=".">
<!-- IMPORTANT!
This is not a normal ant build file. You need to run it via the Eclipse
AntRunner, like this Unix shell example:
$ eclipse -nosplash -clean \
-configuration $PWD/autobuild/configuration \
-user $PWD/autobuild \
-data $PWD/autobuild \
-application org.eclipse.ant.core.antRunner \
-buildfile build.xml \
-Dplugin.path=/usr/lib/eclipse:/usr/share/eclipse/dropins/jdt
Setting the -configuration, -user, and -data options are important in an
automated build process where you don't want to clobber the default locations.
For more details see http://help.eclipse.org/kepler/index.jsp?topic=%2Forg.eclipse.pde.doc.user%2Ftasks%2Fpde_feature_generating_antcommandline.htm
-->
<target name="configure">
<eclipse.buildScript elements="plugin@net.sf.j2s.core"
buildDirectory="sources"
pluginPath="${plugin.path}"
forceContextQualifier="${forceContextQualifier}" />
<eclipse.buildScript elements="plugin@net.sf.j2s.ajax"
buildDirectory="sources"
pluginPath="${plugin.path}"
forceContextQualifier="${forceContextQualifier}" />
<eclipse.buildScript elements="plugin@net.sf.j2s.lib"
buildDirectory="sources"
pluginPath="${plugin.path}"
forceContextQualifier="${forceContextQualifier}" />
<eclipse.buildScript elements="plugin@net.sf.j2s.ui"
buildDirectory="sources"
pluginPath="${plugin.path}"
forceContextQualifier="${forceContextQualifier}" />
<eclipse.buildScript elements="plugin@net.sf.j2s.ui.template.velocity"
buildDirectory="incubator"
pluginPath="${plugin.path}${path.separator}sources"
forceContextQualifier="${forceContextQualifier}" />
<eclipse.buildScript elements="plugin@net.sf.j2s.ui.cmdline"
buildDirectory="incubator"
pluginPath="${plugin.path}${path.separator}sources"
forceContextQualifier="${forceContextQualifier}" />
</target>
</project>