You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Konrad Windszus (Jira)" <ji...@apache.org> on 2022/10/12 10:26:00 UTC

[jira] [Commented] (MNG-7106) VersionRange produces a version range that is incompatible with itself

    [ https://issues.apache.org/jira/browse/MNG-7106?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17616340#comment-17616340 ] 

Konrad Windszus commented on MNG-7106:
--------------------------------------

This works fine already in Maven Resolver (verified in https://github.com/apache/maven-resolver/pull/202/files) so I think just dropping the exception for string {{["1.0,1.0]"}} is the correct solution here.

> VersionRange produces a version range that is incompatible with itself
> ----------------------------------------------------------------------
>
>                 Key: MNG-7106
>                 URL: https://issues.apache.org/jira/browse/MNG-7106
>             Project: Maven
>          Issue Type: Bug
>    Affects Versions: 3.6.3
>            Reporter: Akshay Shankara
>            Assignee: Konrad Windszus
>            Priority: Minor
>
> When a hard version requirement (Ex - [1.0]) is passed to [VersionRange#createFromVersionSpec(String)|https://github.com/apache/maven/blob/maven-3.6.3/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/VersionRange.java#L106], it is parsed to [1.0, 1.0]. But, this version range is invalid [according to this exception|https://github.com/apache/maven/blob/maven-3.6.3/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/VersionRange.java#L214-L217]. If the parsed version range ([1.0, 1.0]) is converted to a String, it cannot be parsed once again by VersionRange#createFromVersionSpec(String).
> Steps to reproduce -
> {code:java}
> VersionRange versionRange = VersionRange.createFromVersionSpec("[1.0]"); // [1.0, 1.0]
> String stringVersionRange = VersionRange.toString(versionRange); // "[1.0, 1.0]"
> VersionRange exceptionVersionRange = VersionRange.createFromVersionSpec(stringVersionRange); // <- InvalidVersionSpecificationException( "Range cannot have identical boundaries: [1.0, 1.0]" )
> {code}



--
This message was sent by Atlassian Jira
(v8.20.10#820010)