Skip to content

Commit

Permalink
[MPLUGIN-488] Bump asmVersion from 9.5 to 9.6.
Browse files Browse the repository at this point in the history
Add additional definitions for JDK 21 and 22
  • Loading branch information
slachiewicz committed Oct 22, 2023
1 parent 1934c85 commit 71a7750
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,8 @@ public class JavaAnnotationsMojoDescriptorExtractor extends AbstractLogEnabled i
CLASS_VERSION_TO_JAVA_STRING.put(Opcodes.V18, "18");
CLASS_VERSION_TO_JAVA_STRING.put(Opcodes.V19, "19");
CLASS_VERSION_TO_JAVA_STRING.put(Opcodes.V20, "20");
CLASS_VERSION_TO_JAVA_STRING.put(Opcodes.V21, "21");
CLASS_VERSION_TO_JAVA_STRING.put(Opcodes.V22, "22");
}

@Inject
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
<!-- whenever the ASM version is updated also the
maven-plugin-tools-annotations/src/main/java/o/a/m/tools/plugins/extractor/annotations/JavaAnnotationsMojoDescriptorExtractor#CLASS_VERSION_TO_JAVA_STRING
needs to be updated as well -->
<asmVersion>9.5</asmVersion>
<asmVersion>9.6</asmVersion>
<plexusUtilsVersion>4.0.0</plexusUtilsVersion>
<plexusXmlVersion>3.0.0</plexusXmlVersion>
<reportingApiVersion>3.1.1</reportingApiVersion>
Expand Down

0 comments on commit 71a7750

Please sign in to comment.