HelloWorld with AntBuilder
This shows you how print “HelloWorld” with the groovy AntBuilder.
def ant = new AntBuilder()
ant.echo("Hello World")
The result is.
[echo] Hello World
This shows you how print “HelloWorld” with the groovy AntBuilder.
def ant = new AntBuilder()
ant.echo("Hello World")
The result is.
[echo] Hello World