Created
August 23, 2017 04:04
-
-
Save wreulicke/ab08a8d0c814a034f82a0ca499bc34ac to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
configurations { | |
groovyScript | |
} | |
dependencies { | |
groovyScript localGroovy() | |
} | |
task testRun(type:JavaExec){ | |
classpath = configurations.groovyScript | |
main = 'groovy.ui.GroovyMain' | |
args "test.groovy" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
println("hogehoge") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment