Lukas Eder created MPLUGIN-371: ---------------------------------- Summary: Support for Java 16 Key: MPLUGIN-371 URL: https://issues.apache.org/jira/browse/MPLUGIN-371 Project: Maven Plugin Tools Issue Type: New Feature Components: Plugin Plugin Affects Versions: 3.6.0 Reporter: Lukas Eder
This works the same way as https://issues.apache.org/jira/browse/MPLUGIN-364 which requested support for Java 14. In {{org.apache.maven.plugin-tools:maven-plugin-tools-annotations:3.6.0}}, the ASM API version is still wired to ASM7: {code:java} public MojoClassVisitor( Logger logger ) { super( Opcodes.ASM7 ); this.logger = logger; }{code} At least ASM8 is required to process records, for example, and ASM 9.1 is available on Maven Central, so it might be worth upgrading. See also: https://stackoverflow.com/q/67113170/521799 -- This message was sent by Atlassian Jira (v8.3.4#803005)