mirror of https://github.com/apache/lucene.git
SOLR-2756: Maven configuration: Excluded transitive stax:stax-api dependency from org.codehaus.woodstox:wstx-asl dependency.
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1170896 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
eb2ff46bad
commit
527bcf67b1
|
@ -160,6 +160,12 @@
|
||||||
<groupId>org.codehaus.woodstox</groupId>
|
<groupId>org.codehaus.woodstox</groupId>
|
||||||
<artifactId>wstx-asl</artifactId>
|
<artifactId>wstx-asl</artifactId>
|
||||||
<scope>runtime</scope>
|
<scope>runtime</scope>
|
||||||
|
<exclusions>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>stax</groupId>
|
||||||
|
<artifactId>stax-api</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
</exclusions>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>javax.servlet</groupId>
|
<groupId>javax.servlet</groupId>
|
||||||
|
|
|
@ -115,6 +115,12 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.codehaus.woodstox</groupId>
|
<groupId>org.codehaus.woodstox</groupId>
|
||||||
<artifactId>wstx-asl</artifactId>
|
<artifactId>wstx-asl</artifactId>
|
||||||
|
<exclusions>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>stax</groupId>
|
||||||
|
<artifactId>stax-api</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
</exclusions>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.slf4j</groupId>
|
<groupId>org.slf4j</groupId>
|
||||||
|
|
|
@ -319,6 +319,9 @@ Other Changes
|
||||||
* SOLR-1897: The data dir from the core descriptor should override the data dir from
|
* SOLR-1897: The data dir from the core descriptor should override the data dir from
|
||||||
the solrconfig.xml rather than the other way round. (Mark Miller)
|
the solrconfig.xml rather than the other way round. (Mark Miller)
|
||||||
|
|
||||||
|
* SOLR-2756: Maven configuration: Excluded transitive stax:stax-api dependency
|
||||||
|
from org.codehaus.woodstox:wstx-asl dependency. (David Smiley via Steve Rowe)
|
||||||
|
|
||||||
Documentation
|
Documentation
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue