Re: [appfuse-user] Unit test does not find jar

2009-03-24 Thread Matt Raible
You should add your JAR as a dependency in pom.xml, not as a file in src/main/webapp/WEB-INF/lib. Matt On Mar 24, 2009, at 11:22 AM, Marian wrote: Hello! I'm adding a certain jar in src/main/webapp/WEB-INF/lib. Compilation is OK (although for some reason I have to run it 2 times, with uni

[appfuse-user] Unit test does not find jar

2009-03-24 Thread Marian
Hello! I'm adding a certain jar in src/main/webapp/WEB-INF/lib. Compilation is OK (although for some reason I have to run it 2 times, with unit tests disabled), but why the unit tests do not find my jar (classes from it being used in my POJO's)? How could I actually see Maven's class path? Regard