I'm trying to build a project that depends on io.netty, and it's the one third-party library that doesn't seem to support Java9+ modules since I don't see any module-info.class inside the jars.
When I come to run my project I get the error: Error occurred during initialization of boot layer java.lang.module.FindException: Module io.netty.buffer not found, required by ...
I have seen elsewhere that this can [in theory] be built using jdeps and an alternative third-party Maven plugin, but my question is that I can't believe I'm the first person to ask if module versions of Netty have been built previously, and if so does anyone know if these pre-built module versions already somewhere out there in the ether.
Also, Java9's modules has been out for a while and why aren't the developers behind Netty supporting modules?