io.github.uoxx3.cjfx
Owner: Brian Alvarez
Gradle plugin used for creating JavaFX projects in a simple and fully configurable way.
https://github.com/uoxx3/cjfx-plugin
Sources: https://github.com/uoxx3/cjfx-plugin.git
Version 1.1.0 (latest)
1.1.0
Created 06 September 2024.
Gradle plugin used for creating JavaFX projects in a simple and fully configurable way.
Using the plugins DSL:
plugins {
id("io.github.uoxx3.cjfx") version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.uoxx3:cjfx:1.1.0")
}
}
apply(plugin = "io.github.uoxx3.cjfx")
Using the plugins DSL:
plugins {
id "io.github.uoxx3.cjfx" version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.uoxx3:cjfx:1.1.0"
}
}
apply plugin: "io.github.uoxx3.cjfx"