搜索 Gradle 插件

com.github.tkruse.groovysh

一个 Gradle 插件,可以启动带有您的应用程序类的命令行外壳。

https://github.com/tkruse/gradle-groovysh-plugin

版本 1.0.8 (最新版)

1.0.8

创建日期 2015年9月4日。

没有版本描述可用。

使用 插件 DSL

plugins {
  id("com.github.tkruse.groovysh") version "1.0.8"
}

使用 旧版插件应用

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

apply(plugin = "com.github.tkruse.groovysh")

使用 插件 DSL

plugins {
  id "com.github.tkruse.groovysh" version "1.0.8"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.tkruse.gradle:gradle-groovysh-plugin:1.0.8"
  }
}

apply plugin: "com.github.tkruse.groovysh"

了解如何将插件应用到子项目中