Skip to content

Instantly share code, notes, and snippets.

@toby55kij
Created January 30, 2015 16:29
Show Gist options
  • Save toby55kij/a1e34612771e957976a7 to your computer and use it in GitHub Desktop.
Save toby55kij/a1e34612771e957976a7 to your computer and use it in GitHub Desktop.
Groovyスクリプトを配布する1つの方法 ref: http://qiita.com/toby55kij/items/1172db965158dc7d1d2e
apply plugin: 'groovy'
apply plugin: 'application'
repositories {
mavenCentral()
}
dependencies {
compile 'org.codehaus.groovy:groovy-all:2.4.0'
}
mainClassName = "Hello"
println "Hello ${args.join(',')}."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment