What they meant is that you can exclude the xml-apis transitive dep, i.e.:

      <dependency>
        <groupId>commons-logging</groupId>
        <artifactId>commons-logging</artifactId>
        <version>1.1</version>

        <exclusions>
          <exclusion>
            <groupId>xml-apis</groupId>
            <artifactId>xml-apis</artifactId>
          </exclusion>
        </exclusions>
      </dependency>

See the docs: 
http://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html.

Jeff Mutonho wrote:
On 5/29/07, Maria Odea Ching <[EMAIL PROTECTED]> wrote:
I think that's also a dependency of jaxen 1.1 =)

- Deng

MK Tan wrote:
> Is your war file using commons-logging 1.1?
> AFAIK, commons-logging will include xml-apis as indirect dependency.
> just exclude it will solve the problem
>
>

Yes I have both jaxen and commons-logging.I need both at runtime and
hence can't  exclude them

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



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

Reply via email to