Last time I tried still was having problems with i...
# tornadofx
h
Last time I tried still was having problems with it working under JDK 11 but looked like there was progress on a new version that works with the new module system in JDK 9+
j
You'll need to use the JDK 10 branch, which you can get through a snapshot release. For gradle it's:
Copy code
repositories {
    maven { url '<https://oss.sonatype.org/content/repositories/snapshots>' } 
}

dependencies {
    implementation "no.tornado:tornadofx:2.0.0-SNAPSHOT"
}
❤️ 1