<artifactId>asm</artifactId>
<version>1.0</version>
<scope>system</scope>
- <systemPath>${project.basedir}/../lib/asm/asm-8.0.1.renamed.jar</systemPath>
+ <systemPath>${project.basedir}/../lib/asm/asm-9.1.renamed.jar</systemPath>
</dependency>
<!-- Dependencies needed for running tests in this module independently of complete reactor build -->
<tasks>
<echo message="unzip jarjar'd asm" />
<unzip
- src="${project.basedir}/../lib/asm/asm-8.0.1.renamed.jar"
+ src="${project.basedir}/../lib/asm/asm-9.1.renamed.jar"
dest="target/asm-unzipped" />
</tasks>
</configuration>
<tasks>
<echo message="unzip jarjar'd asm" />
<unzip
- src="${project.basedir}/../lib/asm/asm-8.0.1.renamed.jar"
+ src="${project.basedir}/../lib/asm/asm-9.1.renamed.jar"
dest="target/asm-unzipped" />
</tasks>
</configuration>
<tasks>
<echo message="unzip jarjar'd asm" />
<unzip
- src="${project.basedir}/../lib/asm/asm-8.0.1.renamed.jar"
+ src="${project.basedir}/../lib/asm/asm-9.1.renamed.jar"
dest="target/asm-unzipped" />
</tasks>
</configuration>
<artifactId>asm</artifactId>
<version>1.0</version>
<scope>system</scope>
- <systemPath>${project.basedir}/../lib/asm/asm-8.0.1.renamed.jar</systemPath>
+ <systemPath>${project.basedir}/../lib/asm/asm-9.1.renamed.jar</systemPath>
</dependency>
-->
</dependencies>
<project name="jarjar-asm" default="package">
- <!-- if you need this defining, use the jarjar-1.0.jar in this project -->
- <taskdef name="jarjar" classname="com.tonicsystems.jarjar.JarJarTask"/>
+ <!-- If you need the 'jarjar' task, put lib/jarjar/jarjar-1.3.jar on the Ant classpath -->
+ <taskdef name="jarjar" classname="com.tonicsystems.jarjar.JarJarTask"/>
+
+ <target name="package" description="Jarjar asm-NNN.jar and prefix package name with aj">
+ <jarjar destfile="asm-9.1.renamed.jar">
+ <zipfileset src="asm-9.1.jar" excludes="module-info.class"/>
+ <rule pattern="org.objectweb.asm.**" result="aj.org.objectweb.asm.@1"/>
+ </jarjar>
+ </target>
- <target name="package" description="Jarjar asm-NNN.jar and prefix package name with aj">
- <jarjar destfile="asm-8.0.1.renamed.jar">
- <zipfileset src="asm-8.0.1.jar" excludes="module-info.class"/>
- <rule pattern="org.objectweb.asm.**" result="aj.org.objectweb.asm.@1"/>
- </jarjar>
- </target>
-
-
</project>
+ File.separator
+ "bcel-verifier.jar"
- + File.pathSeparator + ".." + File.separator + "lib" + File.separator + "asm" + File.separator + "asm-8.0.1.renamed.jar"
+ + File.pathSeparator + ".." + File.separator + "lib" + File.separator + "asm" + File.separator + "asm-9.1.renamed.jar"
// When the build machine executes the tests, it is using code built into jars rather than code build into
// bin directories. This means for the necessary types to be found we have to put these jars on the classpath:
<artifactId>asm</artifactId>
<version>1.0</version>
<scope>system</scope>
- <systemPath>${project.basedir}/../lib/asm/asm-8.0.1.renamed.jar</systemPath>
+ <systemPath>${project.basedir}/../lib/asm/asm-9.1.renamed.jar</systemPath>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>asm</artifactId>
<version>1.0</version>
<scope>system</scope>
- <systemPath>${project.basedir}/../lib/asm/asm-8.0.1.renamed.jar</systemPath>
+ <systemPath>${project.basedir}/../lib/asm/asm-9.1.renamed.jar</systemPath>
</dependency>
</dependencies>
</project>
private static class AspectJClassVisitor extends ClassVisitor {
public AspectJClassVisitor(ClassVisitor classwriter) {
- super(Opcodes.ASM8, classwriter);
+ super(Opcodes.ASM9, classwriter);
}
@Override
// created by a ClassWriter (see top level class comment)
static class AJMethodVisitor extends MethodVisitor {
public AJMethodVisitor(MethodVisitor mv) {
- super(Opcodes.ASM8,mv);
+ super(Opcodes.ASM9,mv);
}
}