Skip to content

Instantly share code, notes, and snippets.

@clebertsuconic
Created May 15, 2023 21:22
Show Gist options
  • Save clebertsuconic/ca4fbda16b1c9e3730e9306505dda15d to your computer and use it in GitHub Desktop.
Save clebertsuconic/ca4fbda16b1c9e3730e9306505dda15d to your computer and use it in GitHub Desktop.
def folder = new File(".")
def jars = folder.listFiles({ file -> file.isFile() && file.name.endsWith('.jar') })
def classpath = jars.collect { it.absolutePath }.join(':')
println "groovy -cp '" + classpath + "' XA.groovy"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment