miasma
miasma
This might be a problem with the Gradle's Kotlin plugin, but I'm wondering if there are some workaround for this.
FWIW, I experimented with Eclipse Paho + Graal just recently. `org.eclipse.paho:org.eclipse.paho.client.mqttv3:1.2.4` still required few steps to make it work with Graal: 1. Fixed https://github.com/oracle/graal/issues/2086 by using client-maven-plugin:0.1.27. This linked with...
> Folks I've created a fork https://github.com/aya-prover/commonmark-java based on @xzel23's work. I've released it on maven central, but it may take a few days to be usable (there's a staging...
This project also depends on https://github.com/robinst/autolink-java, which doesn't provide any module-info file yet.
Same issue here. I tried different combinations of versions with the @nlisker's hellofx example: - Java 11-19: no new issues with recent versions - JavaFX 11-19.0.2: all work - Gradle:...
I did some further testing. This commit seems to break the plugin: https://github.com/openjfx/javafx-gradle-plugin/commit/02d36b8f1cbac46c8faeb01ade45f399c37eb9fd Moduleplugin versions 1.8.2 - 1.8.9 all work, but 1.8.10 triggers the bug, also 1.8.11 and 1.8.12 fail.
@nlisker. Ok added this to `build.gradle`: ``` application { mainModule = moduleName mainClass = "org.openjfx.MainApp" applicationDefaultJvmArgs = ['--module', 'hellofx'] } //mainClassName = "$moduleName/org.openjfx.MainApp" ``` Now it works with Java 19,...
> Hi, > > So I am compiling all the releases with a JDK8. That might explain why it is not compatible with the module system of JDK9. Isn't the...
The compress argument handling is currently broken as well. The plugin assumes an integer argument. Values such as zip-9 are not even allowed.
At least for my simple use case, adding the following `src/main/java/module-info.java` seemed to work: ```java module org.odftoolkit.odfdom { requires java.desktop; requires java.logging; requires java.xml; requires java.rdfa; requires xercesImpl; requires org.json;...