Search Gradle plugins

Version 1.0.16

Created 06 July 2017.

FXLauncher plugin

Using the plugins DSL:

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

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.16")
  }
}

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "no.tornado.fxlauncher"

Learn how to apply plugins to subprojects