Search Gradle plugins

Version 0.0.9 (latest)

Created 22 March 2021.

Plugin that makes it easy to work with JavaFX and Gradle 7+ (JDK 16+)

Using the plugins DSL:

plugins {
  id("com.dua3.javafxgradle7plugin") version "0.0.9"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.dua3.gradle:javafx-plugin:0.0.9")
  }
}

apply(plugin = "com.dua3.javafxgradle7plugin")

Using the plugins DSL:

plugins {
  id "com.dua3.javafxgradle7plugin" version "0.0.9"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.dua3.gradle:javafx-plugin:0.0.9"
  }
}

apply plugin: "com.dua3.javafxgradle7plugin"

Learn how to apply plugins to subprojects