Search Gradle plugins

Version 1.0.20 (latest)

Created 17 July 2018.

FXLauncher plugin

Using the plugins DSL:

plugins {
  id("no.tornado.fxlauncher") version "1.0.20"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.no.tornado:fxlauncher-gradle-plugin:1.0.20")
  }
}

apply(plugin = "no.tornado.fxlauncher")

Using the plugins DSL:

plugins {
  id "no.tornado.fxlauncher" version "1.0.20"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.no.tornado:fxlauncher-gradle-plugin:1.0.20"
  }
}

apply plugin: "no.tornado.fxlauncher"

Learn how to apply plugins to subprojects