Skip to content

Instantly share code, notes, and snippets.

@wreulicke
Created August 23, 2017 04:04
Show Gist options
  • Save wreulicke/ab08a8d0c814a034f82a0ca499bc34ac to your computer and use it in GitHub Desktop.
Save wreulicke/ab08a8d0c814a034f82a0ca499bc34ac to your computer and use it in GitHub Desktop.
configurations {
groovyScript
}
dependencies {
groovyScript localGroovy()
}
task testRun(type:JavaExec){
classpath = configurations.groovyScript
main = 'groovy.ui.GroovyMain'
args "test.groovy"
}
println("hogehoge")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment