mvn install:install-file should create appropriate entries so that dependencies 
with version ranges will use installed file.
----------------------------------------------------------------------------------------------------------------------------

                 Key: MINSTALL-33
                 URL: http://jira.codehaus.org/browse/MINSTALL-33
             Project: Maven 2.x Install Plugin
          Issue Type: Bug
    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:

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

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to