aboutsummaryrefslogtreecommitdiffstats
path: root/build.xml
blob: 8258e80dd1f8527bf9057613e50217cf541f7771 (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
<?xml version="1.0"?>
<project name="run-all-junit-tests" basedir="build" default="all">

    <!-- redirect to build/build.xml to build from modules root -->
    <!-- user should still set up build/local.properties -->

    <property name="aspectj.modules.dir" location="${basedir}/.."/>

    <macrodef name="aj-ant">
        <attribute name="target"/>
        <sequential>
            <ant inheritAll="false" target="@{target}" dir="${basedir}"/>
        </sequential>
    </macrodef>

    <target name="patch">
        <cvs output="patch">
             <commandline>
                 <argument line="-q diff -u -N"/>
             </commandline>
         </cvs>
     </target>

    <target name="clean">
        <aj-ant target="clean"/>
    </target>

    <target name="cleanall">
        <aj-ant target="clean"/>
    </target>

    <target name="all">
        <aj-ant target="all"/>
    </target>

    <target name="compile">
        <aj-ant target="all"/>
    </target>

    <target name="test">
        <aj-ant target="test"/>
    </target>

    <target name="jar">
        <aj-ant target="all"/>
    </target>

</project>