SOLR-2042: fix woodstox

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@985197 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Grant Ingersoll 2010-08-13 13:44:11 +00:00
parent faed4b4cd0
commit 48b89eb8c8
3 changed files with 15 additions and 1 deletions

View File

@ -509,6 +509,8 @@ Build
* LUCENE-2466: Commons-Codec was upgraded from 1.3 to 1.4. (rmuir)
* SOLR-2042: Fixed some Maven deps (Drew Farris via gsingers)
Documentation
----------------------

View File

@ -118,9 +118,15 @@
<!-- Stax : we could exclude this because already dependancy of solrj -->
<dependency>
<groupId>woodstox</groupId>
<groupId>org.codehaus.woodstox</groupId>
<artifactId>wstx-asl</artifactId>
<version>3.2.7</version>
<exclusions>
<exclusion>
<groupId>stax</groupId>
<artifactId>stax-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.geronimo.specs</groupId>

View File

@ -72,6 +72,12 @@
<groupId>org.codehaus.woodstox</groupId>
<artifactId>wstx-asl</artifactId>
<version>3.2.7</version>
<exclusions>
<exclusion>
<groupId>stax</groupId>
<artifactId>stax-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.geronimo.specs</groupId>