Re: EhCacheProvider not found with other hibernate classes during test (RESOLVED)

2006-11-15 Thread Trevor Torrez
Thanks all; I do appreciate the help. The root cause was (of all things) a space after the class name in hibernate.properties :-/ Now I am back to why this was so hard to diagnose -- the tests, when run from maven (on the command line), is not picking up changes to that file -- but when the

Re: EhCacheProvider not found with other hibernate classes during test (RESOLVED)

2006-11-15 Thread Wayne Fay
I don't know why the changed file wasn't detected. Start running mvn clean {your phase here} ie mvn clean package or mvn clean test rather than mvn test directly and Maven will delete target/* before running, which should take care of these kinds of problems. Wayne On 11/15/06, Trevor Torrez

Re: EhCacheProvider not found with other hibernate classes during test (RESOLVED)

2006-11-15 Thread Trevor Torrez
I wiped it out and rechecked it out from source control; seems to be working fine. Thanks again. On 11/15/06, Wayne Fay [EMAIL PROTECTED] wrote: I don't know why the changed file wasn't detected. Start running mvn clean {your phase here} ie mvn clean package or mvn clean test rather than mvn