aboutsummaryrefslogtreecommitdiffstats
path: root/bcel-builder/build.xml
diff options
context:
space:
mode:
authoraclement <aclement>2005-04-19 10:38:38 +0000
committeraclement <aclement>2005-04-19 10:38:38 +0000
commitf7bcff6dbf16ed80ca4934fd8529deae6ebdde7c (patch)
tree2362d53afe3cb37c15b9ff0a3d513fcad9e0b89b /bcel-builder/build.xml
parent45ae94da9e44a31f970c9f5ee4f678902b26fc17 (diff)
downloadaspectj-f7bcff6dbf16ed80ca4934fd8529deae6ebdde7c.tar.gz
aspectj-f7bcff6dbf16ed80ca4934fd8529deae6ebdde7c.zip
From branch: New build scripts that Alex uses under IntelliJ - can be run individually or via master in build module.
Diffstat (limited to 'bcel-builder/build.xml')
-rw-r--r--bcel-builder/build.xml41
1 files changed, 40 insertions, 1 deletions
diff --git a/bcel-builder/build.xml b/bcel-builder/build.xml
index 1d7809267..64f0d794a 100644
--- a/bcel-builder/build.xml
+++ b/bcel-builder/build.xml
@@ -1,4 +1,43 @@
-<project default="packageAndPush" basedir=".">
+<project name="bcel-builder" default="packageAndPush" basedir=".">
+
+ <!-- *********************************************************************** -->
+ <!-- compliance for Alex build -->
+ <!-- *********************************************************************** -->
+ <import file="../build/build-common.xml"/>
+
+ <path id="bcel-builder.test.src.path">
+ <fileset dir="${basedir}/../lib">
+ <include name="junit/*.jar"/>
+ </fileset>
+ <path refid="bcel-builder.src.path"/>
+ </path>
+
+ <path id="bcel-builder.src.path">
+ <fileset dir="${basedir}/../lib">
+ <include name="regexp/*.jar"/>
+ </fileset>
+ </path>
+
+ <target name="cleanall" depends="clean">
+ <delete dir="bin"/>
+ <!-- FIXME: not consistent with Alex policy -->
+ <mkdir dir="bin"/>
+ </target>
+
+ <target name="compile" depends="init">
+ <srccompile project="bcel-builder" path="bcel-builder.src.path"/>
+ </target>
+
+ <target name="test:compile" depends="compile">
+ <testcompile project="bcel-builder" path="bcel-builder.test.src.path"/>
+ </target>
+
+ <target name="test" depends="test:compile">
+ <testrun project="bcel-builder" path="bcel-builder.test.src.path" suite="org.aspectj.apache.bcel.classfile.tests.AllTests"/>
+ </target>
+ <!-- *********************************************************************** -->
+
+
<!-- top-level -->
<target name="extractAndPatchAndJar" depends="extractAndPatch,jar,srcjar" />