Executing External Processes From Groovy
Goal: execute a program via a command line from groovy code Option 1: executing a string A string can be executed in the standard java way: def command = """executable arg1 arg2 arg3"""// Create the String def proc = command.execute ... Other labels:
antbuilder, command, line, external, executables
Using Ant from Groovy
ever you've been working with a build.xml file or some Jelly script and found yourself a little restricted by all those pointy brackets, or found it a bit wierd using XML as a scripting language and wanted something a little cleaner and more straight ...