Goovy is a new language. It looks like they have a nice ant builder class:
ant = *new* AntBuilder()
/// lets just call one task
/ ant.echo(*"hello"*)
/// here"s an example of a block of Ant inside GroovyMarkup
/ ant.sequential {
echo(*"inside sequential"*)
myDir = *"target/AntTest/"*
mkdir(dir:myDir) copy(todir:myDir) {
fileset(dir:*"src/test"*) {
include(name:*"**/*.groovy"*)
}
}
echo(*"done"*)
}
from: http://cvs.groovy.codehaus.org/viewcvs.cgi/groovy/groovy-core/src/test/groovy/util/AntTest.groovy?rev=HEAD&view=auto
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]