You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I ran into this issue as well just now. I was able to solve it thanks to this example repository. Basically, you need at least the following in your build.gradle:
plugins {
id 'java'
id 'org.openjfx.javafxplugin' version '0.0.13'
}
repositories {
mavenCentral()
}
javafx {
version = '14'
modules = ['javafx.controls']
}
dependencies {
implementation group: 'dev.brachtendorf', name: 'JImageHash', version: '1.0.0'
}
JDK 17, cannot get this to work due to missing javafx deps
java.lang.ClassNotFoundException: javafx.scene.image.Image
Can't even find where these are.
Trying to import:
api("org.openjfx:javafx-fxml:11.0.2")
api("org.openjfx:javafx-web:11.0.2")
Just brings back empty jars.
The text was updated successfully, but these errors were encountered: