Marek Budyn created MNG-6232: -------------------------------- Summary: Version range is not resolved correctly Key: MNG-6232 URL: https://issues.apache.org/jira/browse/MNG-6232 Project: Maven Issue Type: Bug Components: Dependencies Affects Versions: 3.3.3 Reporter: Marek Budyn Attachments: pom.xml
When dependency is specified as range, e.g slf4j-api version [1.7, 1.8) as in provided pom.xml, one would expect to resolver to version 1.7.X (e.g. 1.7.25). Instead maven resolves version 1.8.0-alpha 2. Output of command 'mvn dependenct:tree' on provided pom.xml: [INFO] Scanning for projects... [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building project 1.0.0-SNAPSHOT [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-dependency-plugin:2.8:tree (default-cli) @ project --- [INFO] test:project:jar:1.0.0-SNAPSHOT [INFO] \- org.slf4j:slf4j-api:jar:1.8.0-alpha2:compile [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------ [INFO] Total time: 1.273 s [INFO] Finished at: 2017-05-12T23:37:02+02:00 [INFO] Final Memory: 13M/225M [INFO] ------------------------------------------------------------------------ -- This message was sent by Atlassian JIRA (v6.3.15#6346)