搜索 Gradle 插件

版本 0.0.1 (最新)

0.0.1

创建于 2020 年 2 月 8 日。

使分发 TornadoFx 应用程序变得容易的插件。

使用 插件 DSL

plugins {
  id("github.yevhenii8.launcher") version "0.0.1"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.launcher:launcher-gradle-plugin:0.0.1")
  }
}

apply(plugin = "github.yevhenii8.launcher")

使用 插件 DSL

plugins {
  id "github.yevhenii8.launcher" version "0.0.1"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.launcher:launcher-gradle-plugin:0.0.1"
  }
}

apply plugin: "github.yevhenii8.launcher"

学习如何将插件应用到子项目中