[ https://issues.apache.org/jira/browse/MPLUGIN-336?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16595118#comment-16595118 ]
ASF GitHub Bot commented on MPLUGIN-336: ---------------------------------------- rfscholte commented on issue #14: [MPLUGIN-336] Upgrade ASM to 6.2 for Java 10,11 support URL: https://github.com/apache/maven-plugin-tools/pull/14#issuecomment-416623370 The Java Release Train comes with a lot of challenges, whereas staying in line with ASM is a clear example. I understand there are projects that want to experiment with new ASM features, but that might imply extra codechanges. (a request for having an option to get the latest ASP api version was declined) Is it important to have a released version of the plugin? Otherwise you can fork the plugin yourself and implement this yourself. Another option I'm thinking of is to introduce an interface, so required changes from ASM can be implemented by anybody, then it will be a matter of adding this dependency to the plugin in your own pom. maven-plugin-plugin is just one of the plugins, there are more plugins suffering with the same issue and I don't expect that we will do releases on demand, our team is just too small and the project too big. I'm open for any solution that won't require a new release of this plugin with every change (new API) of ASM ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org > broken in JDK 10 - IllegalArgumentException > ------------------------------------------- > > Key: MPLUGIN-336 > URL: https://issues.apache.org/jira/browse/MPLUGIN-336 > Project: Maven Plugin Tools > Issue Type: Bug > Components: Plugin Plugin > Affects Versions: 3.5.1 > Environment: Apache Maven 3.5.0 > (ff8f5e7444045639af65f6095c62210b5713f426; 2017-04-03T14:39:06-05:00) > Maven home: /mnt/STORAGE/Work/VetsEZ/Maven/apache-maven-3.5.0 > Java version: 10.0.1, vendor: Oracle Corporation > Java home: /opt/java/jdk-10.0.1 > Reporter: Dan Armbrust > Priority: Blocker > > I'm attempting to migrate some code to Java 10, and this is happening: > {code:java} > // > [ERROR] Failed to execute goal > org.apache.maven.plugins:maven-plugin-plugin:3.5.1:descriptor > (default-descriptor) on project mojo: Execution default-descriptor of goal > org.apache.maven.plugins:maven-plugin-plugin:3.5.1:descriptor failed.: > IllegalArgumentException -> [Help 1] > org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute > goal org.apache.maven.plugins:maven-plugin-plugin:3.5.1:descriptor > (default-descriptor) on project mojo: Execution default-descriptor of goal > org.apache.maven.plugins:maven-plugin-plugin:3.5.1:descriptor failed. > at > org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:213) > at > org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:154) > at > org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:146) > at > org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:117) > at > org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:81) > at > org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build(SingleThreadedBuilder.java:51) > at > org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:128) > at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:309) > at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:194) > at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:107) > at org.apache.maven.cli.MavenCli.execute(MavenCli.java:993) > at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:345) > at org.apache.maven.cli.MavenCli.main(MavenCli.java:191) > at > java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at > java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) > at > java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.base/java.lang.reflect.Method.invoke(Method.java:564) > at > org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:289) > at > org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:229) > at > org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:415) > at > org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:356) > Caused by: org.apache.maven.plugin.PluginExecutionException: Execution > default-descriptor of goal > org.apache.maven.plugins:maven-plugin-plugin:3.5.1:descriptor failed. > at > org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:145) > at > org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:208) > ... 20 more > Caused by: java.lang.IllegalArgumentException > at org.objectweb.asm.ClassReader.<init>(Unknown Source) > at org.objectweb.asm.ClassReader.<init>(Unknown Source) > at org.objectweb.asm.ClassReader.<init>(Unknown Source) > at > org.apache.maven.tools.plugin.extractor.annotations.scanner.DefaultMojoAnnotationsScanner.analyzeClassStream(DefaultMojoAnnotationsScanner.java:218) > at > org.apache.maven.tools.plugin.extractor.annotations.scanner.DefaultMojoAnnotationsScanner.scanArchive(DefaultMojoAnnotationsScanner.java:145) > at > org.apache.maven.tools.plugin.extractor.annotations.scanner.DefaultMojoAnnotationsScanner.scan(DefaultMojoAnnotationsScanner.java:112) > at > org.apache.maven.tools.plugin.extractor.annotations.scanner.DefaultMojoAnnotationsScanner.scan(DefaultMojoAnnotationsScanner.java:79) > at > org.apache.maven.tools.plugin.extractor.annotations.JavaAnnotationsMojoDescriptorExtractor.scanAnnotations(JavaAnnotationsMojoDescriptorExtractor.java:124) > at > org.apache.maven.tools.plugin.extractor.annotations.JavaAnnotationsMojoDescriptorExtractor.execute(JavaAnnotationsMojoDescriptorExtractor.java:103) > at > org.apache.maven.tools.plugin.scanner.DefaultMojoScanner.populatePluginDescriptor(DefaultMojoScanner.java:96) > at > org.apache.maven.plugin.plugin.AbstractGeneratorMojo.execute(AbstractGeneratorMojo.java:259) > at > org.apache.maven.plugin.plugin.DescriptorGeneratorMojo.execute(DescriptorGeneratorMojo.java:90) > at > org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:134) > ... 21 more > {code} > so, apparently, the asm classReader is broken (again) - and this plugin has a > fatal error that breaks the world, instead of doing the reasonable thing, and > logging an error, and continuing on with the build. > > In this particular case, it is scanning a class that shouldn't even be > scanned, as it has no mojo annotations to find, yet, the "mojoDependency" > parameter doesn't seem to do anything useful, as I can't get it to stop > scanning this class. > > This is the class that trips it up: > [https://github.com/OSEHRA/ISAAC/blob/bce62e1e4879853fd6b96f4f77d5a2b48289ee27/core/model/src/main/java/sh/isaac/model/coordinate/LogicCoordinateLazyBinding.java] > This class is scanned successfully (I assume) when I try the maven build with > JDK 9 or JDK 8. > JDK10 must have a change that isn't yet supported? > -- This message was sent by Atlassian JIRA (v7.6.3#76005)