This is an automated email from the ASF dual-hosted git repository. sjaranowski pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven-plugin-tools.git
The following commit(s) were added to refs/heads/master by this push: new 4184cb16 Bump asmVersion from 9.8 to 9.9 (#972) 4184cb16 is described below commit 4184cb164660a88c350dd3a51fd7a89b5b14ce9f Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> AuthorDate: Mon Oct 6 23:47:21 2025 +0200 Bump asmVersion from 9.8 to 9.9 (#972) * Bump asmVersion from 9.8 to 9.9 Bumps `asmVersion` from 9.8 to 9.9. Updates `org.ow2.asm:asm` from 9.8 to 9.9 Updates `org.ow2.asm:asm-commons` from 9.8 to 9.9 Updates `org.ow2.asm:asm-util` from 9.8 to 9.9 --- updated-dependencies: - dependency-name: org.ow2.asm:asm dependency-version: '9.9' dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.ow2.asm:asm-commons dependency-version: '9.9' dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.ow2.asm:asm-util dependency-version: '9.9' dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <supp...@github.com> * Adjust JavaAnnotationsMojoDescriptorExtractor --------- Signed-off-by: dependabot[bot] <supp...@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Slawomir Jaranowski <s.jaranow...@gmail.com> --- .../extractor/annotations/JavaAnnotationsMojoDescriptorExtractor.java | 1 + pom.xml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/maven-plugin-tools-annotations/src/main/java/org/apache/maven/tools/plugin/extractor/annotations/JavaAnnotationsMojoDescriptorExtractor.java b/maven-plugin-tools-annotations/src/main/java/org/apache/maven/tools/plugin/extractor/annotations/JavaAnnotationsMojoDescriptorExtractor.java index 551dccb2..04347349 100644 --- a/maven-plugin-tools-annotations/src/main/java/org/apache/maven/tools/plugin/extractor/annotations/JavaAnnotationsMojoDescriptorExtractor.java +++ b/maven-plugin-tools-annotations/src/main/java/org/apache/maven/tools/plugin/extractor/annotations/JavaAnnotationsMojoDescriptorExtractor.java @@ -137,6 +137,7 @@ public class JavaAnnotationsMojoDescriptorExtractor implements MojoDescriptorExt CLASS_VERSION_TO_JAVA_STRING.put(Opcodes.V23, "23"); CLASS_VERSION_TO_JAVA_STRING.put(Opcodes.V24, "24"); CLASS_VERSION_TO_JAVA_STRING.put(Opcodes.V25, "25"); + CLASS_VERSION_TO_JAVA_STRING.put(Opcodes.V26, "26"); } @Inject diff --git a/pom.xml b/pom.xml index a8e1c9ce..677b0d8f 100644 --- a/pom.xml +++ b/pom.xml @@ -99,7 +99,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.8</asmVersion> + <asmVersion>9.9</asmVersion> <plexusUtilsVersion>4.0.2</plexusUtilsVersion> <plexusXmlVersion>3.0.1</plexusXmlVersion> <reportingApiVersion>4.0.0</reportingApiVersion>