-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtools-defs.xml
executable file
·53 lines (40 loc) · 1.6 KB
/
tools-defs.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
<?xml version="1.0" encoding="UTF-8"?>
<project name="Visage Compiler Tools Definitions" basedir=".">
<property name="base.dir" value="${basedir}"/>
<path id="ant.class.path">
<fileset dir="${import.ant.lib}" includes="**/ant.jar" />
</path>
<path id="asm.class.path">
<fileset dir="${import.asm.lib}" includes="**/asm-3.1.jar" />
<fileset dir="${import.asm.lib}" includes="**/asm-analysis-3.1.jar" />
<fileset dir="${import.asm.lib}" includes="**/asm-tree-3.1.jar" />
<fileset dir="${import.asm.lib}" includes="**/asm-util-3.1.jar" />
</path>
<path id="junit.class.path">
<fileset file="${import.junit.jar}"/>
</path>
<path id="findbugs.class.path">
<fileset dir="${import.findbugs.home}" includes="**/*.jar" />
</path>
<path id="saxon.class.path">
<fileset dir="${import.saxon.dir}" includes="**/*.jar" />
</path>
<path id="xincluder.class.path">
<fileset dir="${import.xincluder.dir}" includes="**/*.jar" />
</path>
<path id="antlr.class.path">
<fileset dir="${import.antlr.lib}" includes="**/*.jar" />
</path>
<path id="antlr-runtime.class.path">
<file file="${import.antlr-runtime.jar}" />
</path>
<path id="antlrworks.class.path">
<fileset dir="${import.antlrworks.dir}" includes="**/*.jar" />
</path>
<path id="cobertura.class.path">
<fileset dir="${import.cobertura.dir}" includes="**/*.jar" />
</path>
<path id="resolver.class.path">
<fileset dir="${import.resolver.dir}" includes="**/*.jar" />
</path>
</project>