This repository has been archived by the owner on Jul 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.xml
executable file
·126 lines (115 loc) · 3.68 KB
/
config.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
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!--
Configuration file for AntRun.
Use this file to override the default properties contained
in build.xml. For example, to override the build.jar.filename
property (which sets the name of the compiled jar file), add
an element
<jar>
<filename>foo</filename>
</jar>
inside the <build> element.
**Caveat emptor:** in some cases, changing this file and running ant
again will result in Ant using a cached version of the old file! Run
"ant dummy" to make sure that the correct data is being read. Otherwise
you might need to run "ant clean" and start over.
-->
<build>
<!-- Uncomment any of these if you want to override the build
script's default values -->
<!-- The project's name -->
<name>Cornipickle</name>
<!-- The project's version number -->
<version>1.3.4</version>
<!-- The project's author. Currently this only
shows up in the footer of the Javadoc documentation. -->
<author>Sylvain Hallé</author>
<!-- The project's main class -->
<mainclass>ca.uqac.lif.cornipickle.server.Main</mainclass>
<!-- Output jar -->
<jar>
<filename>cornipickle.jar</filename>
<withsrc>false</withsrc>
<withdoc>false</withdoc>
<withdeps>true</withdeps>
</jar>
<!-- Redefine directories -->
<srcdir>Source/Server/src</srcdir>
<bindir>Source/Server/bin</bindir>
<depdir>Source/Server/dep</depdir>
<test>
<srcdir>Source/ServerTest/src</srcdir>
<bindir>Source/ServerTest/bin</bindir>
</test>
<!--
Write JAR dependencies here.
-->
<dependencies>
<dependency>
<!--
Bullwinkle. Used to parse Cornipickle statements.
-->
<name>Bullwinkle</name>
<classname>ca.uqac.lif.bullwinkle.BnfParser</classname>
<files>
<zip>https://github.com/sylvainhalle/Bullwinkle/releases/download/v1.4.2/bullwinkle-1.4.2.zip</zip>
</files>
<bundle>true</bundle>
</dependency>
<dependency>
<!--
json-lif. Used to manage JSON objects
-->
<name>json-lif</name>
<classname>ca.uqac.lif.json.JsonMain</classname>
<files>
<zip>https://github.com/liflab/json-lif/releases/download/v1.6.3/json-lif-1.6.3.zip</zip>
</files>
<bundle>true</bundle>
</dependency>
<dependency>
<!--
Azrael. Used to serialize objects to JSON
-->
<name>Azrael</name>
<classname>ca.uqac.lif.azrael.DummyMain</classname>
<files>
<zip>https://github.com/sylvainhalle/Azrael/releases/download/v0.7.3-alpha/azrael-0.7.3-alpha.zip</zip>
</files>
<bundle>true</bundle>
</dependency>
<dependency>
<!--
Jerrydog. Used for server mode.
-->
<name>Jerrydog</name>
<classname>ca.uqac.lif.jerrydog.Server</classname>
<files>
<zip>https://github.com/sylvainhalle/Jerrydog/releases/download/v0.3.2/jerrydog-0.3.2.zip</zip>
</files>
<bundle>true</bundle>
</dependency>
<dependency>
<!--
Selenium Web Driver. Used for testing.
-->
<name>Selenium Web Driver</name>
<classname>org.openqa.selenium.WebDriver</classname>
<files>
<zip>http://selenium-release.storage.googleapis.com/2.53/selenium-java-2.53.0.zip</zip>
</files>
<bundle>false</bundle>
</dependency>
<dependency>
<!--
Selenium Server. Used for testing.
-->
<name>Selenium Server</name>
<classname>org.openqa.selenium.WebDriver</classname>
<files>
<zip>https://selenium-release.storage.googleapis.com/2.44/selenium-server-standalone-2.44.0.jar</zip>
</files>
<bundle>false</bundle>
</dependency>
</dependencies>
</build>