Search Gradle plugins

Version 0.0.1 (latest)

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"

Learn how to apply plugins to subprojects