Re: mvn test and classpath: do I need to execute install?

2011-04-28 Thread leojhartiv-2
Hmmm...I'm actually not seeing this: C:\workspace\top>mvn clean test -pl module2 -X + Error stacktraces are turned on. Apache Maven 2.2.1 (r801777; 2009-08-06 15:16:01-0400) Java version: 1.6.0_24 Java home: C:\Program Files\Java\jdk1.6.0_24\jre Default locale: en_US, platform encoding: Cp1252 O

Re: mvn test and classpath: do I need to execute install?

2011-04-20 Thread leojhartiv-2
So just so I understand completely: if module2 depends on module1 and I execute "mvn clean test" at the top "shared" parent, the classpath for module2 would look at module1/target/classes vs ...module1.jar. Correct? -- View this message in context: http://maven.40175.n5.nabble.com/mvn-test-and-

mvn test and classpath: do I need to execute install?

2011-04-20 Thread leojhartiv-2
I've been using Maven for some time, so I'm a bit embarrassed to ask this question. That said... If I have a multimodule project: top -module1 -module2 and the modules have the following dependencies: module1 depends on top module2 depends on top module2 depends on module1 When I want