plugins {
id 'java'
}
group = 'com.alathreon'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.openjfx:javafx-graphics:17'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.15.1'
testImplementation platform('org.junit:junit-bom:5.9.1')
testImplementation 'org.junit.jupiter:junit-jupiter'
}
test {
useJUnitPlatform()
}
I have this build.gradle
I can use ObjectMapper from jackson:databind
But I can't use any of the javafx stuff like Application, it just doesn't find them
Does anyone have any idea why ?