diff options
author | Shevek <[email protected]> | 2008-03-21 23:05:04 +0000 |
---|---|---|
committer | Shevek <[email protected]> | 2008-03-21 23:05:04 +0000 |
commit | 5ff55648127c8a8e1b9829775045af986e37647c (patch) | |
tree | b28209b1efe12824fbdcabd4ee9073e93ca30636 /build.xml | |
parent | fca34200881fcaf7b84b4210f7a5f40c8925c4d1 (diff) |
move stuff into trunk
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/build.xml b/build.xml new file mode 100644 index 0000000..728c55e --- /dev/null +++ b/build.xml @@ -0,0 +1,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> |