blob: 81dda6c88e0c60615c927928772e6390545a46d7 (
plain)
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
|
<?xml version="1.0"?>
<project name="taskdefs" default="all" basedir=".">
<import file="../build/build-common.xml"/>
<import file="../bridge/build.xml"/>
<import file="../org.aspectj.ajdt.core/build.xml"/>
<path id="taskdefs.test.src.path">
<path refid="taskdefs.src.path"/>
<fileset dir="${basedir}/../lib">
<include name="junit/*.jar"/>
</fileset>
<!-- below: needed for test run but not test:compile -->
<pathelement path="../weaver/bin"/>
<pathelement path="../asm/bin"/>
<pathelement path="../runtime/bin"/>
<fileset dir="${basedir}/../org.eclipse.jdt.core">
<include name="*.jar"/>
</fileset>
<fileset dir="${basedir}/../lib">
<include name="bcel/*.jar"/>
</fileset>
</path>
<path id="taskdefs.src.path">
<pathelement path="../bridge/bin"/>
<pathelement path="../org.aspectj.ajdt.core/bin"/>
<pathelement path="../util/bin"/>
</path>
<target name="compile" depends="init,
bridge.compile,
org.aspectj.ajdt.core.compile,
util.compile">
<srccompile project="taskdefs" path="taskdefs.src.path"/>
<!-- copy resources -->
<copy todir="../taskdefs/bin">
<fileset dir="../taskdefs/src" includes="**/*.properties"/>
</copy>
</target>
<target name="test:compile" depends="compile">
<testcompile project="taskdefs" path="taskdefs.test.src.path"/>
</target>
<target name="test" depends="test:compile,
asm.compile,
org.aspectj.ajdt.core.compile,
runtime.compile,
weaver.compile">
<testrun project="taskdefs" path="taskdefs.test.src.path" suite="TaskdefsModuleTests"/>
</target>
<target name="jar" depends="compile">
<delete file="${build.ajdir}/jars/taskdefs.jar"/>
<zip destfile="${build.ajdir}/jars/taskdefs.jar">
<fileset dir="bin">
<include name="**/*"/>
</fileset>
</zip>
</target>
</project>
|