Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. configurations {
  2. groovyScript
  3. }
  4.  
  5. dependencies {
  6. groovyScript localGroovy()
  7. }
  8.  
  9. task testRun(type:JavaExec){
  10. classpath = configurations.groovyScript
  11. main = 'groovy.ui.GroovyMain'
  12. args "test.groovy"
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement