forked from sylvainhalle/textidote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.xml
93 lines (82 loc) · 2.66 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
<?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>TeXtidote</name>
<!-- The project's author. Currently this only
shows up in the footer of the Javadoc documentation. -->
<author>Sylvain Hallé</author>
<!-- The project's version number -->
<version>0.8.1</version>
<!-- The project's main class -->
<mainclass>ca.uqac.lif.textidote.Main</mainclass>
<!-- Redefine directories -->
<srcdir>Source/Core/src</srcdir>
<bindir>Source/Core/bin</bindir>
<depdir>Source/Core/dep</depdir>
<docdir>docs/javadoc</docdir>
<test>
<srcdir>Source/CoreTest/src</srcdir>
<bindir>Source/CoreTest/bin</bindir>
</test>
<!-- Output jar -->
<jar>
<filename>textidote.jar</filename>
<withdoc>false</withdoc>
<withdeps>true</withdeps>
</jar>
<!--
Write JAR dependencies here.
-->
<dependencies>
<dependency>
<!--
Bullwinkle. Used mainly because of its Cli parser.
-->
<name>Bullwinkle</name>
<classname>ca.uqac.lif.bullwinkle.BnfParser</classname>
<files>
<zip>https://github.com/sylvainhalle/Bullwinkle/releases/download/v1.4.3/bullwinkle-1.4.3.zip</zip>
</files>
<bundle>true</bundle>
</dependency>
<dependency>
<!--
Language Tool. Checks grammar on plain text.
-->
<name>Language Tool</name>
<classname>org.languagetool.JLanguageTool</classname>
<files>
<jar>https://github.com/sylvainhalle/languagetool/releases/download/v4.6a-standalone/languagetool-bundle-4.6a.jar</jar>
</files>
<bundle>true</bundle>
</dependency>
<dependency>
<!--
json-lif, used to create JSON output
-->
<name>json-lif</name>
<classname>ca.uqac.lif.json.JsonElement</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>
</dependencies>
</build>