Search Gradle plugins

Version 0.1.2

Created 03 April 2023.

Create projects with JavaFX with different configurations from the same platform

Using the plugins DSL:

plugins {
  id("io.github.ushiosan23.custom_jfx_plugin") version "0.1.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.ushiosan23:custom_jfx_plugin:0.1.2")
  }
}

apply(plugin = "io.github.ushiosan23.custom_jfx_plugin")

Using the plugins DSL:

plugins {
  id "io.github.ushiosan23.custom_jfx_plugin" version "0.1.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.ushiosan23:custom_jfx_plugin:0.1.2"
  }
}

apply plugin: "io.github.ushiosan23.custom_jfx_plugin"

Learn how to apply plugins to subprojects