Cannot build with JDK 17 (Loom)
Sorry, another build problem..
[ERROR] Failed to execute goal org.bsc.maven:maven-processor-plugin:3.1.0:process (generate-doc) on project vertx-rx-java: Error executing: java.lang.IllegalAccessError: class io.vertx.docgen.BaseProcessor (in unnamed module @0xc63447a) cannot access class com.sun.tools.javac.code.Symbol$ClassSymbol (in module jdk.compiler) because module jdk.compiler does not export com.sun.tools.javac.code to unnamed module @0xc63447a -> [Help 1]
The error is because JDK 16+ make illegal access an error now. I have a temporary workaround, which is creating a file .mvn/jvm.config:
--illegal-access=permit
But we should figure out a more robust solution if we want a generator for project Loom.
this class is only used for Java 8, so I think we could find a trick with multi release jar.
can you provide a branch so I can reproduce it @AugustNagro and I would try to fix it ?