[
https://issues.apache.org/jira/browse/SOLR-981?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12897564#action_12897564
]
Drew Farris commented on SOLR-981:
----------------------------------
looks like this may still be an issue in branch_3x:
https://svn.apache.org/repos/asf/lucene/dev/branches/branch_3x/solr/src/maven/solr-core-pom.xml.template
I'm also wondering if the dependency for both solr-core and solr-solrj should
be:
<dependency>
<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>
>From what I understand stax should be provided using the geronimo-stax-api
>jars instead of the reference implementation (based on the discussion here:
>http://www.lucidimagination.com/search/document/f02b22dc9d7848/replace_stax_api_with_geronimo_stax_woodstox#bd9168d12ef5b637)
> woodstox dependency in maven solrj has wrong groupId
> ----------------------------------------------------
>
> Key: SOLR-981
> URL: https://issues.apache.org/jira/browse/SOLR-981
> Project: Solr
> Issue Type: Bug
> Components: clients - java
> Affects Versions: 1.4
> Reporter: Tim
> Assignee: Shalin Shekhar Mangar
> Fix For: 1.4
>
>
> Woodstox project has long changed their groupId and artifacts under the old
> groupId are actually not defined correctly in the maven2, causing various
> silly issues with maven:
> pom file of Solrj 1.4-SNAPSHOT has woodstox Sax dependency defined as
> <dependency>
> <groupId>woodstox</groupId>
> <artifactId>wstx-asl</artifactId>
> <version>3.2.7</version>
> </dependency>
> where the correct dependency should be
> <dependency>
> <groupId>org.codehaus.woodstox</groupId>
> <artifactId>wstx-asl</artifactId>
> <version>3.2.7</version>
> </dependency>
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]