-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.xml
executable file
·51 lines (41 loc) · 1.37 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
<?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>xml-lif</name>
<!-- The project's version -->
<version>1.2.2</version>
<!-- JAR filename -->
<jar>
<filename>xml-lif.jar</filename>
<withsrc>false</withsrc>
<withdoc>false</withdoc>
</jar>
<!-- 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.xml.XmlElement</mainclass>
<!--
Write JAR dependencies here.
-->
<dependencies>
<!-- None, and it should stay that way -->
</dependencies>
</build>