mirror of https://github.com/apache/lucene.git
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:
parent
faed4b4cd0
commit
48b89eb8c8
|
@ -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
|
||||
----------------------
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue