Unable to derive module descriptor for auto generated module names in Java 9?
问题 My project depends on Netty Epoll transport. Here is dependency: <dependency> <groupId>io.netty</groupId> <artifactId>netty-transport-native-epoll</artifactId> <version>${netty.version}</version> <classifier>${epoll.os}</classifier> </dependency> The auto-generated module name for this dependency is: netty.transport.native.epoll And as the native keyword is reserved in Java 9 I can\'t add this module as a dependency to my project: module core { requires netty.transport.native.epoll; } Due to: