ok this is from project B's pom.xml

<dependency>
                        <groupId>hello</groupId>
                        <artifactId>myjar</artifactId>
                        <version>1.0.0.0</version>
                        <type>jar</type>
                        <scope>compile</scope>
                </dependency>

this jar does get put into web-inf/lib but the jars that myjar depends on do
not.  Here is an example from project A's pom:

<dependency>
                <groupId>postgresql</groupId>
                <artifactId>postgresql</artifactId>
                <version>8.2-507.jdbc3</version>
                <type>jar</type>
                <scope>compile</scope>
        </dependency>

I would expect to see this jar in web-inf/lib since myjar depends on it.

Thank you.
-- 
View this message in context: 
http://maven.40175.n5.nabble.com/importing-dependencies-without-inheritance-tp3201744p3201893.html
Sent from the Maven - Users mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to