adamdickmeiss opened a new issue, #80: URL: https://github.com/apache/maven-jdeps-plugin/issues/80
### Affected version 3.2.0 ### Bug description After upgrading from 3.1.2 to 3.2.0 I get a new error in pretty much all Vert.x based projects. With https://start.vertx.io/ I created a small project to illustrate and added a plugin section, such as ``` <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jdeps-plugin</artifactId> <version>3.2.0</version> <executions> <execution> <goals> <goal>jdkinternals</goal> </goals> </execution> </executions> <configuration> <multiRelease>base</multiRelease> <failOnWarning>false</failOnWarning> </configuration> </plugin> ``` When running `mvn test`, I get: ```INFO] ------------------------------------------------------------------------ [INFO] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Total time: 0.845 s [INFO] Finished at: 2026-01-07T11:16:17+01:00 [INFO] ------------------------------------------------------------------------ [ERROR] Failed to execute goal org.apache.maven.plugins:maven-jdeps-plugin:3.2.0:jdkinternals (default) on project starter: [ERROR] Exit code: 1 - Exception in thread "main" java.lang.module.FindException: Module io.netty.handler.proxy not found, required by io.vertx.core [ERROR] at java.base/java.lang.module.Resolver.findFail(Resolver.java:892) [ERROR] at java.base/java.lang.module.Resolver.resolve(Resolver.java:192) [ERROR] at java.base/java.lang.module.Resolver.resolve(Resolver.java:141) [ERROR] at java.base/java.lang.module.Configuration.resolve(Configuration.java:420) [ERROR] at java.base/java.lang.module.Configuration.resolve(Configuration.java:254) [ERROR] at jdk.jdeps/com.sun.tools.jdeps.JdepsConfiguration$Builder.build(JdepsConfiguration.java:564) [ERROR] at jdk.jdeps/com.sun.tools.jdeps.JdepsTask.buildConfig(JdepsTask.java:607) [ERROR] at jdk.jdeps/com.sun.tools.jdeps.JdepsTask.run(JdepsTask.java:561) [ERROR] at jdk.jdeps/com.sun.tools.jdeps.JdepsTask.run(JdepsTask.java:537) [ERROR] at jdk.jdeps/com.sun.tools.jdeps.Main.main(Main.java:50) ``` Is there a breaking change, that I missed? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
