You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Robert Scholte (JIRA)" <ji...@codehaus.org> on 2013/07/10 22:37:05 UTC

[jira] (MINSTALL-33) mvn install:install-file should create appropriate entries so that dependencies with version ranges will use installed file.

     [ https://jira.codehaus.org/browse/MINSTALL-33?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Robert Scholte updated MINSTALL-33:
-----------------------------------

    Description: 
when using {{install:install-file}} it should cooperate with the code that handles versions that don't have an explicit version, but specify a version range. For example, if I install {{hibernate-3.2.0rc4}}, and my {{pom.xml}} has the hibernate dependency specified as:

{code:xml}
    <dependency>
      <groupId>hibernate</groupId>
      <artifactId>hibernate</artifactId>
      <version>[3.2.0rc4,)</version>
    </dependency> 
{code}
maven will complain that it cannot find the hibernate version {{3.2.0rc4}}. However if the dependency is specified as :
{code:xml}
    <dependency>
      <groupId>hibernate</groupId>
      <artifactId>hibernate</artifactId>
      <version>3.2.0rc4</version>
    </dependency>
{code}
then the project builds successfully. 

  was:
when using install:install-file it should cooperate with the code that handles versions that don't have an explicit version, but specify a version range. For example, if I install hibernate-3.2.0rc4, and my pom.xml has the hibernate dependency specified as:

    <dependency>
      <groupId>hibernate</groupId>
      <artifactId>hibernate</artifactId>
      <version>[3.2.0rc4,)</version>
    </dependency> 

maven will complain that it cannot find the hibernate version 3.2.0rc4. However if the dependency is specified as :
    <dependency>
      <groupId>hibernate</groupId>
      <artifactId>hibernate</artifactId>
      <version>3.2.0rc4</version>
    </dependency>

then the project builds successfully. 

    
> mvn install:install-file should create appropriate entries so that dependencies with version ranges will use installed file.
> ----------------------------------------------------------------------------------------------------------------------------
>
>                 Key: MINSTALL-33
>                 URL: https://jira.codehaus.org/browse/MINSTALL-33
>             Project: Maven 2.x Install Plugin
>          Issue Type: Bug
>          Components: install:install-file
>    Affects Versions: 2.1
>         Environment: all
>            Reporter: Patrick Moore
>
> when using {{install:install-file}} it should cooperate with the code that handles versions that don't have an explicit version, but specify a version range. For example, if I install {{hibernate-3.2.0rc4}}, and my {{pom.xml}} has the hibernate dependency specified as:
> {code:xml}
>     <dependency>
>       <groupId>hibernate</groupId>
>       <artifactId>hibernate</artifactId>
>       <version>[3.2.0rc4,)</version>
>     </dependency> 
> {code}
> maven will complain that it cannot find the hibernate version {{3.2.0rc4}}. However if the dependency is specified as :
> {code:xml}
>     <dependency>
>       <groupId>hibernate</groupId>
>       <artifactId>hibernate</artifactId>
>       <version>3.2.0rc4</version>
>     </dependency>
> {code}
> then the project builds successfully. 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira