diff options
author | aclement <aclement> | 2006-02-22 14:59:11 +0000 |
---|---|---|
committer | aclement <aclement> | 2006-02-22 14:59:11 +0000 |
commit | 901fe8fe2510dc940e2a419e8ef75ec12ad97016 (patch) | |
tree | 321de33751436a5a166ac5989ab93278d2826d7f /lib/asm/build.xml | |
parent | 82854f5681752d87be7500828509e6c86c4f7345 (diff) | |
download | aspectj-901fe8fe2510dc940e2a419e8ef75ec12ad97016.tar.gz aspectj-901fe8fe2510dc940e2a419e8ef75ec12ad97016.zip |
optimization: use asm for lightweight delegates
Diffstat (limited to 'lib/asm/build.xml')
-rw-r--r-- | lib/asm/build.xml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/asm/build.xml b/lib/asm/build.xml new file mode 100644 index 000000000..96e9f383f --- /dev/null +++ b/lib/asm/build.xml @@ -0,0 +1,12 @@ +<project name="asm-packaging" default="rename" basedir="."> + + <target name="rename"> + <taskdef name="jarjar" classname="com.tonicsystems.jarjar.JarJarTask" classpath="jarjar-0.6.jar"/> + <jarjar jarfile="asm-aj.jar"> + <!--fileset dir="build/main"/--> + <zipfileset src="asm-2.2.1.jar"/> + <rule pattern="org.objectweb.**" result="org.aspectj.org.objectweb.@1"/> + </jarjar> + </target> + +</project> |