Skip to content

Instantly share code, notes, and snippets.

@FranckSilvestre
Last active December 15, 2015 13:08
Show Gist options
  • Save FranckSilvestre/5264626 to your computer and use it in GitHub Desktop.
Save FranckSilvestre/5264626 to your computer and use it in GitHub Desktop.
Exclusions of old xml apis from jaxen
<dependency>
<groupId>jaxen</groupId>
<artifactId>jaxen</artifactId>
<version>1.1</version>
<exclusions>
<exclusion>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
</exclusion>
<exclusion>
<groupId>xalan</groupId>
<artifactId>xalan</artifactId>
</exclusion>
<exclusion>
<groupId>xerces</groupId>
<artifactId>xmlParserAPIs</artifactId>
</exclusion>
</exclusions>
</dependency>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment