Search Gradle plugins

io.github.uoxx3.cjfx

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.0.0 (latest)

Created 03 January 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.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.uoxx3:cjfx:1.0.0")
  }
}

apply(plugin = "io.github.uoxx3.cjfx")

Using the plugins DSL:

plugins {
  id "io.github.uoxx3.cjfx" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.uoxx3:cjfx:1.0.0"
  }
}

apply plugin: "io.github.uoxx3.cjfx"

Learn how to apply plugins to subprojects