github.yevhenii8.launcher
Owner: Yevhenii Nadtochii
Plugin that makes it easy to distribute TornadoFx applications.
https://github.com/yevhenii8/launcher
Sources: https://github.com/yevhenii8/launcher
Version 0.0.1 (latest)
0.0.1
Created 08 February 2020.
Plugin that makes it easy to distribute TornadoFx applications.
Using the plugins DSL:
plugins {
id("github.yevhenii8.launcher") version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.launcher:launcher-gradle-plugin:0.0.1")
}
}
apply(plugin = "github.yevhenii8.launcher")
Using the plugins DSL:
plugins {
id "github.yevhenii8.launcher" version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.launcher:launcher-gradle-plugin:0.0.1"
}
}
apply plugin: "github.yevhenii8.launcher"