forked from bhupinderjnu/SampleWebApp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
45 lines (43 loc) · 1.76 KB
/
build.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
<project name="SampleBuild" default="war" basedir=".">
<taskdef resource="com/puppycrawl/tools/checkstyle/ant/checkstyle-ant-task.properties"
classpath="WebContent/WEB-INF/lib/checkstyle-7.8.2-all.jar"/>
<path id="compile.classpath">
<fileset dir="WebContent/WEB-INF/lib">
<include name="*.jar"/>
</fileset>
</path>
<target name="init">
<mkdir dir="build/classes"/>
<mkdir dir="dist"/>
</target>
<target name="compile" depends="init">
<javac srcdir="src" debug="true" destdir="build/classes">
<classpath refid="compile.classpath"/>
</javac>
</target>
<target name="checkstyle">
<checkstyle config="sun_checks.xml" failOnViolation="false">
<fileset dir="src/example" includes="**/*.java"/>
<formatter type="xml" toFile="checkstyle_errors.xml"/>
</checkstyle>
</target>
<target name="junit" depends="compile">
<junit printsummary="yes" haltonfailure="yes">
<classpath>
<pathelement location="build/classes"/>
<pathelement path="WebContent/WEB-INF/lib/junit.jar"/>
<pathelement path="WebContent/WEB-INF/lib/org.hamcrest.core_1.3.0.v201303031735.jar"/>
</classpath>
<test name="junit.TestCalculator" haltonfailure="no" outfile="TestCalculator_JUnitResult">
<formatter type="xml"/>
</test>
</junit>
</target>
<target name="war" depends="compile">
<war destfile="dest/SampleWebApp.war" webxml="WebContent/WEB-INF/web.xml">
<fileset dir="WebContent"/>
<lib dir="WebContent/WEB-INF/lib"/>
<classes dir="build/classes"/>
</war>
</target>
</project>