davetron5000 / importscour

Fork of ImportScrubber which normalizes import statements in Java code

importscour / build.xml
100644 28 lines (21 sloc) 0.832 kb
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
<project name="importscour" default="compile" basedir=".">
 
    <property environment="env" />
    <property file="local.build.properties" />
    <property file="build.properties" />
 
    <loadfile property="release.number" srcFile="${src.dir}/release.txt">
        <filterchain>
            <striplinebreaks />
        </filterchain>
    </loadfile>
 
    <import file="${ant.src.dir}/paths.xml" />
 
    <target name="clean"
        description="Remove all generated targets">
        <delete dir="${build.dir}" />
    </target>
 
    <import file="${ant.src.dir}/compile.xml" />
    <import file="${ant.src.dir}/javadoc.xml" />
    <import file="${ant.src.dir}/test.xml" />
    <import file="${ant.src.dir}/checkstyle.xml" />
    <import file="${ant.src.dir}/jar.xml" />
    <import file="${ant.src.dir}/package.xml" />
 
</project>