We're using Maven2 in a multiproject environment. Actually I'm dealing with the dependency-scope. In the target solution I want to submit all dependeniecs to the vm by setting the classpath.
Pom_Project_A_.xml
<dependencies>
<dependency>log4j</dependency>
<dependency>commons-io</dependency>
<dependency>...</dependency>
</dependencies>
Pom_Project_B.xml
<dependencies>
<dependency>Project_A</dependency>
</dependencies>
When i want to compile Project "B" maven cant resolve log4j and the other "subdependencies" already defined in Project "A".
Is it possible to change this behavior? Thanks a lot