eclipse
The Workable Configuration for TestNG, Maven 2, SureFire, and Ecplise
I started to use TestNG for testing in Java today. and it took me a while to find out that the workable Configuration for TestNG, Maven 2's Surefire, is:
- TestNG 5.1,
- Surefire 2.3
The real important thing is to specify <classifier>jdk15</classifier> for JDK 1.5+, or <classifier>jdk14</classifier> for JDK 1.4 in your pom file. The reference can be found here
If you don't specify the classifier, it seems to run in jdk14 mode. so all of my tests using annotations didn't run with Maven.
NetBeans 5.0 is Out With a Very Good GUI Builder
NetBeans 5.0 is out.
What excited me is the new Matisse GUI Builder that "makes it easier to layout professional looking windows and dialog boxes".
Be sure to check out the demo.
I also tried the new GUI builder myself. I have been very impressed. It's a lot better than JBuilder's. I am not sure how it stacks up against Eclipse as I didn't find any good GUI builder for Eclipse like one year ago.
I used to use Netbeans 4 to develop GUI prototypes because it had the best GUI builder to let me lay out things with different layout managers. But it still required a lot of tweaking (mainly on GridBagLayout) in order to get resizing to behave correctly. Netbeans 5 has made it so easy to get the right resizing behaviors. Thumbs up!











