-
Apache Ant 1.7.0 beta 1 available (3 messages)
- Posted by: Joseph Ottinger
- Posted on: August 30 2006 08:24 EDT
The next revision of Ant, version 1.7.0, is available in beta from Apache. This version introduces resource frameworks and antlibs, which are user-defined external tasks, built with XML and provided as extension points. Ant is by far the most popular compilation tool available for Java, so updates have a lot of impact. With the external resource capability, ant will be far easier to extend with custom tasks.Threaded Messages (3)
- Junit 4 by Joe Wolf on August 30 2006 10:01 EDT
- Junit4 by Steve Loughran on August 30 2006 10:20 EDT
- Re: Apache Ant 1.7.0 beta 1 available by Neil Ellis on August 31 2006 05:26 EDT
-
Junit 4[ Go to top ]
- Posted by: Joe Wolf
- Posted on: August 30 2006 10:01 EDT
- in response to Joseph Ottinger
I'm just happy that the task now supports JUnit 4. -
Junit4[ Go to top ]
- Posted by: Steve Loughran
- Posted on: August 30 2006 10:20 EDT
- in response to Joe Wolf
I'm just happy that the task now supports JUnit 4.
It doesnt support it perfectly, because it also has to work with junit3.x. It runs junit4 tests using the junit4 'legacy' entry point. -the reports arent perfect, because it gets the name of the junit4 'legacy' bridge in there. -the reports don't handle the 'ignored' annotations The problem is, there is no way to support all of junit4 and not break every single junit3 build on the planet. As junit4 is java1.5+ only, we expect junit3 to remain around for a long time. As well as the updated junit task, we've been talking with the junit team about how they could do their own task, one that would be almost a drop-in replacement for , but integrate properly with junit4. It may also steal some of the stuff I've been doing for the smartfrog junit runner, which can serialize results over the wire, and save test reports to an XHTML format. That means that we can run tests remotely and save the results straight into human-readable form; no need for a post-run XSLT transform. -steve -
Re: Apache Ant 1.7.0 beta 1 available[ Go to top ]
- Posted by: Neil Ellis
- Posted on: August 31 2006 05:26 EDT
- in response to Joseph Ottinger
Joseph, it might be nice to add a link to the new features in 1.7. Kind regards Neil