com.github.tkruse.groovysh
A gradle plugin to start command-line shells with your Application classes.
https://github.com/tkruse/gradle-groovysh-plugin
Version 1.0.8 (latest)
1.0.8
Created 04 September 2015.
No version description available.
Using the plugins DSL:
plugins {
id("com.github.tkruse.groovysh") version "1.0.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.tkruse.gradle:gradle-groovysh-plugin:1.0.8")
}
}
apply(plugin = "com.github.tkruse.groovysh")
Using the plugins DSL:
plugins {
id "com.github.tkruse.groovysh" version "1.0.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.tkruse.gradle:gradle-groovysh-plugin:1.0.8"
}
}
apply plugin: "com.github.tkruse.groovysh"