I am new to Maven 2 and am trying to understand currently, in alpha 3,
how transitive dependencies are supposed to be working.

If I want to include something like dom4j-1.6.jar, but none of the
dom4j dependencies, in my project, how would I specify this in the
pom?  I tried the following, and since the dom4j pom has many
dependencies listed in it, maven tries to grab them all and fails
because many aren't available in the repositories.

<dependency>
    <groupId>dom4j</groupId>
    <artifactId>dom4j</artifactId>
    <version>1.6</version>
    <scope>runtime</scope>
</dependency>

I don't know if I should be declaring something differently in my pom
or in the dom4j pom.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to