You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-dev@lucene.apache.org by "Tim Taranov (JIRA)" <ji...@apache.org> on 2009/01/26 05:20:59 UTC

[jira] Created: (SOLR-981) woodstox dependency in maven solrj has wrong groupId

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 Taranov


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.


[jira] Resolved: (SOLR-981) woodstox dependency in maven solrj has wrong groupId

Posted by "Shalin Shekhar Mangar (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/SOLR-981?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Shalin Shekhar Mangar resolved SOLR-981.
----------------------------------------

       Resolution: Fixed
    Fix Version/s: 1.4

Committed revision 737645.

Thanks for spotting this Tim!

> 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.


[jira] Assigned: (SOLR-981) woodstox dependency in maven solrj has wrong groupId

Posted by "Shalin Shekhar Mangar (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/SOLR-981?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Shalin Shekhar Mangar reassigned SOLR-981:
------------------------------------------

    Assignee: Shalin Shekhar Mangar

> 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
>
> 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.