This post originated from an RSS feed registered with Java Buzz
by dion.
Original Post: Groovy and ant on steroids
Feed Title: techno.blog(Dion)
Feed URL: http://feeds.feedburner.com/dion
Feed Description: blogging about life the universe and everything tech
Jon Tirsen pointed me at Groovy and ant on steroids.
Philipp Meier has taken the Groovy Ant support, and has come up with a simple way to setup a build system (that follows some conventions):
new JavaLibArtifact(
sources: "src/java",
testsources: "src/test",
libdir: "lib",
testlibs: "/usr/share/java/junit.jar",
testlibdir: "lib",
targetdir: "target"
).build()
Cool stuff.