-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
69 lines (69 loc) · 3.36 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
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project name="JDEECo-Demos" >
<description>JDEECo demos build file</description>
<target name="FFLauncher">
<java classname="cz.cuni.mff.d3s.deeco.demo.firefighters.FFLauncher" failonerror="true" fork="yes">
<classpath>
<pathelement location="firefighters.jar"/>
<pathelement location="jdeeco.jar"/>
<pathelement location="cloning-1.9.0.jar"/>
<pathelement location="objenesis-1.2.jar"/>
<pathelement location="org.eclipse.emf.ecore.xmi-2.9.0-v20130528-0742.jar"/>
<pathelement location="org.eclipse.emf.ecore-2.9.0-v20130528-0742.jar"/>
<pathelement location="org.eclipse.emf.common-2.9.0-v20130528-0742.jar"/>
</classpath>
</java>
</target>
<target name="FFHexacopterLauncher">
<java classname="cz.cuni.mff.d3s.deeco.demo.firefighters.FFHexacopterLauncher" failonerror="true" fork="yes">
<classpath>
<pathelement location="firefighters.jar"/>
<pathelement location="jdeeco.jar"/>
<pathelement location="cloning-1.9.0.jar"/>
<pathelement location="objenesis-1.2.jar"/>
<pathelement location="org.eclipse.emf.ecore.xmi-2.9.0-v20130528-0742.jar"/>
<pathelement location="org.eclipse.emf.ecore-2.9.0-v20130528-0742.jar"/>
<pathelement location="org.eclipse.emf.common-2.9.0-v20130528-0742.jar"/>
</classpath>
</java>
</target>
<target name="LocalLauncherCloud">
<java classname="cz.cuni.mff.d3s.deeco.demo.cloud.LocalLauncherCloud" failonerror="true" fork="yes">
<classpath>
<pathelement location="cloud.jar"/>
<pathelement location="jdeeco.jar"/>
<pathelement location="cloning-1.9.0.jar"/>
<pathelement location="objenesis-1.2.jar"/>
<pathelement location="org.eclipse.emf.ecore.xmi-2.9.0-v20130528-0742.jar"/>
<pathelement location="org.eclipse.emf.ecore-2.9.0-v20130528-0742.jar"/>
<pathelement location="org.eclipse.emf.common-2.9.0-v20130528-0742.jar"/>
</classpath>
</java>
</target>
<target name="LocalLauncherDynamicCloud">
<java classname="cz.cuni.mff.d3s.deeco.demo.cloud.LocalLauncherDynamicCloud" failonerror="true" fork="yes">
<classpath>
<pathelement location="cloud.jar"/>
<pathelement location="jdeeco.jar"/>
<pathelement location="cloning-1.9.0.jar"/>
<pathelement location="objenesis-1.2.jar"/>
<pathelement location="org.eclipse.emf.ecore.xmi-2.9.0-v20130528-0742.jar"/>
<pathelement location="org.eclipse.emf.ecore-2.9.0-v20130528-0742.jar"/>
<pathelement location="org.eclipse.emf.common-2.9.0-v20130528-0742.jar"/>
</classpath>
</java>
</target>
<target name="TSLauncherCloud">
<java classname="cz.cuni.mff.d3s.deeco.demo.cloud.TSLauncherCloud" failonerror="true" fork="yes">
<classpath>
<pathelement location="cloud.jar"/>
<pathelement location="jdeeco.jar"/>
<pathelement location="cloning-1.9.0.jar"/>
<pathelement location="objenesis-1.2.jar"/>
<pathelement location="org.eclipse.emf.ecore.xmi-2.9.0-v20130528-0742.jar"/>
<pathelement location="org.eclipse.emf.ecore-2.9.0-v20130528-0742.jar"/>
<pathelement location="org.eclipse.emf.common-2.9.0-v20130528-0742.jar"/>
</classpath>
</java>
</target>
</project>