no.tornado.fxlauncher
Owner: Edvin Syse
FXLauncher plugin
https://github.com/edvin/fxlauncher-gradle-plugin
Sources: https://github.com/edvin/fxlauncher-gradle-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"