Skip to content

Commit

Permalink
Exclude Saxon and Xerces from the dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
giancosta86 committed Aug 7, 2015
1 parent 27e8ba8 commit aad2ebd
Showing 1 changed file with 29 additions and 4 deletions.
33 changes: 29 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>info.gianlucacosta.easypmd</groupId>
<artifactId>easypmd</artifactId>
<version>9.1</version>
<version>9.2</version>
<packaging>nbm</packaging>


Expand Down Expand Up @@ -102,16 +102,41 @@
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-core</artifactId>
<version>5.3.2</version>
<version>5.3.3</version>

<exclusions>
<exclusion>
<groupId>net.sourceforge.saxon</groupId>
<artifactId>saxon</artifactId>
</exclusion>

<exclusion>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
</exclusion>
</exclusions>
</dependency>


<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-java</artifactId>
<version>5.3.2</version>
<version>5.3.3</version>

<exclusions>
<exclusion>
<groupId>net.sourceforge.saxon</groupId>
<artifactId>saxon</artifactId>
</exclusion>


<exclusion>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
</exclusion>
</exclusions>
</dependency>


<dependency>
<groupId>com.thoughtworks.xstream</groupId>
Expand Down

0 comments on commit aad2ebd

Please sign in to comment.