aboutsummaryrefslogtreecommitdiffstats
path: root/build/build.xml
diff options
context:
space:
mode:
authorwisberg <wisberg>2005-03-08 07:39:49 +0000
committerwisberg <wisberg>2005-03-08 07:39:49 +0000
commit3145d5da01ee1ad058e78db888157a940147cdc2 (patch)
treec567963122c996ef243e668ead17bdd7e28b3a60 /build/build.xml
parent52faf9b65c990a1982f31a65b7d4187e77860f0b (diff)
downloadaspectj-3145d5da01ee1ad058e78db888157a940147cdc2.tar.gz
aspectj-3145d5da01ee1ad058e78db888157a940147cdc2.zip
removed "temp hack ahoy" jar filter. Filter need presumably for non-standard libraries on classpath (update Builder.properties) or for garbage-in (remove ant gif, readme from org.eclipse.jdt.core)
Diffstat (limited to 'build/build.xml')
-rw-r--r--build/build.xml56
1 files changed, 0 insertions, 56 deletions
diff --git a/build/build.xml b/build/build.xml
index dc7c9c945..f87e5660f 100644
--- a/build/build.xml
+++ b/build/build.xml
@@ -358,62 +358,6 @@ To use testing client jar in tests,
<antcall target="build-product">
<param name="product.name" value="tools"/>
</antcall>
- <!-- TODO : remove call -->
- <antcall target="filter-tools-jar" />
- <antcall target="aspectjweaver.jar" />
- </target>
-
- <target name="aspectjweaver.jar"
- description="pull out the subset of aspecttools.jar needed for load-time weaving">
- <!--
- TODO : get rid of this!
- Temp hack ahoy. Open up the aspectjtools.jar to a temp
- location and then do a re-jar of it including only the
- stuff we want to be in there.
- -->
- <mkdir dir="${aj.dist.dir}/tools_tmp"/>
- <unjar dest="${aj.dist.dir}/tools_tmp"
- src="${aj.dist.dir}/tools/lib/aspectjtools.jar"/>
- <jar manifest="${aj.dist.dir}/tools_tmp/META-INF/MANIFEST.MF"
- destfile="${aj.dist.dir}/tools/lib/aspectjweaver.jar">
- <fileset dir="${aj.dist.dir}/tools_tmp">
- <include name="org/aspectj/lang/**"/>
- <include name="org/aspectj/runtime/**"/>
- <include name="org/aspectj/asm/**"/>
- <include name="org/aspectj/bridge/**"/>
- <include name="org/aspectj/util/**"/>
- <include name="org/aspectj/weaver/**"/>
- <include name="org/aspectj/apache/bcel/**"/>
- <include name="copyright.txt"/>
- <include name="META-INF/**"/>
- </fileset>
- </jar>
- <delete dir="${aj.dist.dir}/tools_tmp" />
- </target>
-
-
- <target name="filter-tools-jar">
- <!--
- TODO : get rid of this!
- Temp hack ahoy. Open up the aspectjtools.jar to a temp
- location and then do a re-jar of it including only the
- stuff we want to be in there.
- -->
- <mkdir dir="${aj.dist.dir}/tools_tmp"/>
- <unjar dest="${aj.dist.dir}/tools_tmp"
- src="${aj.dist.dir}/tools/lib/aspectjtools.jar"/>
- <!-- Ant 1.5.1 doesn't overwrite the jar, even with update set to false -->
- <delete file="${aj.dist.dir}/tools/lib/aspectjtools.jar" />
- <jar manifest="${aj.dist.dir}/tools_tmp/META-INF/MANIFEST.MF"
- destfile="${aj.dist.dir}/tools/lib/aspectjtools.jar">
- <fileset dir="${aj.dist.dir}/tools_tmp">
- <include name="javax/**"/>
- <include name="org/**"/>
- <include name="copyright.txt"/>
- <include name="META-INF/**"/>
- </fileset>
- </jar>
- <delete dir="${aj.dist.dir}/tools_tmp" />
</target>
<!-- ===================================================================== -->