On Thursday 01 November 2007, Benson Margulies wrote: > I cribbed the rt/javascript pom.xml from what seemed a relevant > example, but 'mvn' doesn't run my tests in when run from that > directory. Help?
Class naming issue. Surefire is set to look for: **/*Test.java **/*TestCase.java I think your classes are named "*Tests.java" You could probably update the surefire config in the parent/pom.xml to include **/*Tests.java if you want. I have no problem with that. -- J. Daniel Kulp Principal Engineer IONA P: 781-902-8727 C: 508-380-7194 [EMAIL PROTECTED] http://www.dankulp.com/blog
