-
Java 9 is much more restrictive concerning reflective access to non-public fields/methods. For example `setAccessible` called by `org.assertj.core.util.introspectionFieldUtils#readField` on a private …
-
So, I've done every step and it just crashs while generating the world, and I know it's because this line: forgeBus.addListener(EventPriority.HIGH, this::biomeModification);
1.16.3 Jigsaw version
-
Add support for building, running and testing Java Modules (JPMS - Java Platform Module System) to Gradle.
-
Ktor application can't be compiled with JDK >=9. I'm getting a lot of such errors:
```
error: module kotlinx.io.jvm reads package io.ktor.http from both ktor.server.core and ktor.http.jvm
error: mo…
remal updated
2 years ago
-
When I declare the following `module-info.java` on JDK 13:
```java
module example {
//...
requires org.bytedeco.javacv;
requires org.bytedeco.tesseract;
//...
}
```
I rece…
-
```
java.lang.IllegalAccessError: class net.openhft.chronicle.core.OS (in unnamed module @0x42d1c1ef) cannot access class sun.nio.ch.FileChannelImpl (in module java.base) because module java.base does…
-
My demo project uses gradle 6.6 , jpms structruce and javafxplugin 0.0.9. When I run then run task, an error occurs as follow
```
> org.joor.ReflectException: java.lang.NoSuchFieldException: javaEx…
-
Not sure if this project can help or is it related, but it turns out, that
as of now Jan, 19th 2018, it is not trivial to build Java 9 project that is using new Java module system
Related links
…
-
package 'sun.security.x509' is not available in JDK9
e: /Users/jonnyzzz/Work/ktor/ktor-server/ktor-server-core/src/io/ktor/util/SSL.kt: (62, 10): Symbol is declared in module 'java.base' which does…
-
Hi, I am wondering if there is any intention to support Java 9 modular setups by introducing module-info.java file(s) in the near future.