Update ASM library to support java9

This commit is contained in:
Andreas Dangel
2017-09-27 21:11:37 +02:00
parent 8fc518c814
commit 8113696941
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ public class PMDASMVisitor extends ClassVisitor {
public List<String> innerClasses;
public PMDASMVisitor(String outerName) {
super(Opcodes.ASM5);
super(Opcodes.ASM6);
this.outerName = outerName;
}

View File

@ -747,7 +747,7 @@ Additionally it includes CPD, the copy-paste-detector. CPD finds duplicated code
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>5.0.4</version>
<version>6.0</version>
</dependency>
<dependency>
<groupId>net.sourceforge.pmd</groupId>