aboutsummaryrefslogtreecommitdiffstats
path: root/testing/build.xml
diff options
context:
space:
mode:
authorwisberg <wisberg>2005-05-19 03:48:09 +0000
committerwisberg <wisberg>2005-05-19 03:48:09 +0000
commit2afa9c9148da8566562ef029b9a5d6b5f141763c (patch)
treee0c62bcb64d8a9884639743298b23eda89cf96cb /testing/build.xml
parent79d3b2f57fab5ac2d63d402ee8c226082c872064 (diff)
downloadaspectj-2afa9c9148da8566562ef029b9a5d6b5f141763c.tar.gz
aspectj-2afa9c9148da8566562ef029b9a5d6b5f141763c.zip
newbuild.xml replacing build.xml, with Alex ok
Diffstat (limited to 'testing/build.xml')
-rw-r--r--testing/build.xml74
1 files changed, 3 insertions, 71 deletions
diff --git a/testing/build.xml b/testing/build.xml
index 5bd931aa5..4a7a25ae3 100644
--- a/testing/build.xml
+++ b/testing/build.xml
@@ -1,74 +1,6 @@
<?xml version="1.0"?>
-<project name="testing" default="all" basedir=".">
-
- <import file="../build/build-common.xml"/>
- <import file="../ajde/build.xml"/>
- <import file="../bridge/build.xml"/>
- <import file="../taskdefs/build.xml"/>
- <import file="../testing-client/build.xml"/>
-
- <path id="testing.test.src.path">
- <path refid="testing.src.path"/>
- <fileset dir="${basedir}/../lib">
- <include name="junit/*.jar"/>
- </fileset>
- <!-- for test run -->
- <pathelement path="../org.aspectj.ajdt.core/bin"/>
- <pathelement path="../weaver/bin"/>
- <pathelement path="../runtime/bin"/>
- <fileset dir="${basedir}/../org.eclipse.jdt.core">
- <include name="*.jar"/>
- </fileset>
- <fileset dir="${basedir}/../lib">
- <include name="bcel/*.jar"/>
- </fileset>
- </path>
-
- <path id="testing.src.path">
- <pathelement path="../ajde/bin"/>
- <pathelement path="../asm/bin"/>
- <pathelement path="../bridge/bin"/>
- <pathelement path="../taskdefs/bin"/>
- <pathelement path="../testing-client/bin"/>
- <pathelement path="../testing-util/bin"/>
- <pathelement path="../util/bin"/>
- <fileset dir="${basedir}/../lib">
- <include name="commons/*.jar"/>
- </fileset>
- <!-- for newsrc -->
- <pathelement path="../org.aspectj.ajdt.core/bintest"/>
- </path>
-
- <target name="compile" depends="init,
- ajde.compile,
- asm.compile,
- bridge.compile,
- taskdefs.compile,
- testing-client.compile,
- testing-util.compile,
- util.compile">
- <srccompile project="testing" path="testing.src.path"/>
- <!-- newsrc depends on ajdt.test:compile and we cannot use a depends for it due to the way
- Ant manage overrides thru <import -->
- <testcompile project="weaver" path="weaver.test.src.path"/>
- <testcompile project="org.aspectj.ajdt.core" path="org.aspectj.ajdt.core.test.src.path"/>
- <javac debug="on" destdir="../testing/bin" source="1.2" target="1.1">
- <src path="../testing/newsrc"/>
- <classpath refid="testing.src.path"/>
- <classpath path="../org.aspectj.ajdt.core/bintest"/>
- </javac>
- </target>
-
- <target name="test:compile" depends="compile">
- <testcompile project="testing" path="testing.test.src.path"/>
- </target>
-
- <target name="test" depends="test:compile,
- org.aspectj.ajdt.core.compile,
- weaver.compile,
- runtime.compile">
- <testrun project="testing" path="testing.test.src.path" suite="TestingModuleTests"/>
- </target>
-
+<!-- see ../build/*.html for explanation -->
+<project name="testing" default="test" basedir=".">
+ <import file="${basedir}/../build/build.xml"/>
</project>