aboutsummaryrefslogtreecommitdiffstats
path: root/build.xml
blob: 728c55e8ea435e8a3c62e15b26168fac9ab0224a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8"?>

<project name="jcpp" default="all" basedir=".">
	<dirname property="global.dir.root" file="${ant.file}"/>
	<property name="global.dir.etc" value="${global.dir.root}/etc"/>
	<import file="${global.dir.etc}/global.xml" />

	<target name="clean" depends="global-clean" />
	<target name="compile" depends="global-compile" />
	<target name="all" depends="global-tar" />


	<target name="junit" depends="global-junit" />
	<target name="test" depends="global-junit" />
	<!-- global-findbugs" -->

	<target name="findbugs" depends="global-findbugs,global-findbugs-gui" />

</project>