org.openjfx.javafxplugin
Owner: Joeri Sykora
Plugin that makes it easy to work with JavaFX
https://github.com/openjfx/javafx-gradle-plugin
Sources: https://github.com/openjfx/javafx-gradle-plugin
Version 0.1.0 (latest)
0.1.0
Created 04 September 2023.
Plugin that makes it easy to work with JavaFX
Using the plugins DSL:
plugins {
id("org.openjfx.javafxplugin") version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.openjfx:javafx-plugin:0.1.0")
}
}
apply(plugin = "org.openjfx.javafxplugin")
Using the plugins DSL:
plugins {
id "org.openjfx.javafxplugin" version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.openjfx:javafx-plugin:0.1.0"
}
}
apply plugin: "org.openjfx.javafxplugin"