Skip to content

Commit

Permalink
Ugrade ASM to support higher JDK versions
Browse files Browse the repository at this point in the history
Signed-off-by: Jorge Bescos Gascon <[email protected]>
  • Loading branch information
jbescos committed Jan 23, 2024
1 parent 0407a3f commit a4e6b81
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
target/
.classpath
.factorypath
.project
.settings/
*.iml
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, 2018 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2012, 2024 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
Expand Down Expand Up @@ -30,7 +30,7 @@ public abstract class AbstractAnnotationVisitorImpl extends AnnotationVisitor {
* Gives the version implemented to the superclass
*/
public AbstractAnnotationVisitorImpl() {
super(Opcodes.ASM7);
super(Opcodes.ASM9);
}

/* (non-Javadoc)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, 2018 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2012, 2024 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
Expand Down Expand Up @@ -32,7 +32,7 @@ public abstract class AbstractClassVisitorImpl extends ClassVisitor {
* The constructor that gives the version we are implementing to the superclass
*/
public AbstractClassVisitorImpl() {
super(Opcodes.ASM7);
super(Opcodes.ASM9);
}

/* (non-Javadoc)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, 2018 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2012, 2024 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
Expand Down Expand Up @@ -33,7 +33,7 @@ public abstract class AbstractMethodVisitorImpl extends MethodVisitor {
* The constructor that gives the implemented version to the superclass
*/
public AbstractMethodVisitorImpl() {
super(Opcodes.ASM7);
super(Opcodes.ASM9);
}

/* (non-Javadoc)
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2010, 2021 Oracle and/or its affiliates. All rights reserved.
Copyright (c) 2010, 2024 Oracle and/or its affiliates. All rights reserved.
This program and the accompanying materials are made available under the
terms of the Eclipse Public License v. 2.0, which is available at
Expand Down Expand Up @@ -152,7 +152,7 @@
<jtype.version>0.1.0</jtype.version>
<javassist.version>3.27.0-GA</javassist.version>
<junit.version>4.12</junit.version>
<asm.version>7.1</asm.version>
<asm.version>9.6</asm.version>
<woodstox.version>4.1.2</woodstox.version>
<stax-api.version>1.0-2</stax-api.version>
<aopalliance.version>1.0</aopalliance.version>
Expand Down

0 comments on commit a4e6b81

Please sign in to comment.