On Sun, May 31, 2009 at 12:21 PM, Peter Niederwieser <[email protected]> wrote: > I have a HelloSpock project that contains a single Groovy class (a Spock > specification). What puzzles me a bit is that 'gradle test' takes 10 seconds > to complete. By comparison, 'ant test' takes 3 seconds, and 'mvn test' 8 > seconds. This is on repeated invocation, i.e. all downloading and > compilation has already taken place. Do you consider this acceptable? Would > the difference be less pronounced for bigger projects?
I think what you are seeing is the startup cost of Gradle, which in my observations is higher than Ant's. When you get to 60 second build/test runs then you should be seeing 53 second ant builds and 60 second Gradle builds. Whether that is acceptable is up to you. -- Curtis Cooley [email protected] =============== Once a programmer had a problem. He thought he could solve it with a regular expression. Now he has two problems. --------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email
