Skip to content

Instantly share code, notes, and snippets.

@fcy
Created July 21, 2009 13:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fcy/151333 to your computer and use it in GitHub Desktop.
Save fcy/151333 to your computer and use it in GitHub Desktop.
<!-- This is what you need to do to avoid conflict when using
JasperReport or xercesImpl in a mavenized Grails project -->
<dependency>
<groupId>jasperreports</groupId>
<artifactId>jasperreports</artifactId>
<version>${jasperreports.version}</version>
<exclusions>
<exclusion>
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<version>2.9.1</version>
<scope>runtime</scope>
<exclusions>
<exclusion>
<groupId>xml-resolver</groupId>
<artifactId>xml-resolver</artifactId>
</exclusion>
<exclusion>
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- ... -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment