com.dua3.javafxgradle7plugin
Owner: Axel Howind
Plugin that makes it easy to work with JavaFX and Gradle 7+ (JDK 16+)
https://github.com/xzel23/javafx-gradle-plugin
Sources: https://github.com/xzel23/javafx-gradle-plugin.git
Version 0.0.9 (latest)
Created 22 March 2021.
Plugin that makes it easy to work with JavaFX and Gradle 7+ (JDK 16+)
Add this plugin to your build using the plugins DSL:
plugins {
id("com.dua3.javafxgradle7plugin") version "0.0.9"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.dua3.javafxgradle7plugin:com.dua3.javafxgradle7plugin.gradle.plugin:0.0.9") }
It can then be applied in the precompiled script plugin:plugins { id("com.dua3.javafxgradle7plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.dua3.javafxgradle7plugin:com.dua3.javafxgradle7plugin.gradle.plugin:0.0.9") } } apply(plugin = "com.dua3.javafxgradle7plugin")
- Applying plugins to all subprojects .