Re: Maven version order spec weirdness

2018-06-02 Thread Ross Goldberg
ga" = 0 < "sp" < all other qualifiers in alphabetical order < positive integers in natural order the "alpha", "beta" and "milestone" qualifiers can respectively be shortened to "a", "b" and "m" when directly foll

Re: Maven version order spec weirdness

2018-06-02 Thread Ross Goldberg
> that 1-0-2 canonical representation is 1-2: I'd question people who wrote > 1-0-2 as version string > > Regards, > > Hervé > > Le jeudi 31 mai 2018, 16:22:18 CEST Ross Goldberg a écrit : > > The maven Maven version order spec ( > > https://maven.apache.org

Re: Maven version order spec weirdness

2018-06-01 Thread Ross Goldberg
esolver/maven-resolver-util/xref-test/org/eclipse/aether/util/version/GenericVersionTest.html > > Robert > > On Sat, 02 Jun 2018 00:12:57 +0200, Ross Goldberg > wrote: > > > Sorry, I didn’t mean that the spec explicitly states an example that: > > > > 1-0-2 = 1-2

Re: Maven version order spec weirdness

2018-06-01 Thread Ross Goldberg
ginal proposal. Throughout this email, the syntax for = is: original = canonical On Fri, Jun 1, 2018 at 5:34 PM Robert Scholte wrote: > On Thu, 31 May 2018 16:22:18 +0200, Ross Goldberg > wrote: > > > The maven Maven version order spec ( > > https://maven.apache.org/pom.html#Ver

Re: Maven version order spec weirdness

2018-05-31 Thread Ross Goldberg
hyphens with a numeric token immediately following the latter hyphen. Thus, e.g.: 1.-0.0-20 -> 1-0-20 1-0-rc-2 -> 1-rc-2 On Thu, May 31, 2018 at 10:22 AM Ross Goldberg wrote: > The maven Maven version order spec ( > https://maven.apache.org/pom.html#Version_Order_Specification) indicates &

Maven version order spec weirdness

2018-05-31 Thread Ross Goldberg
The maven Maven version order spec ( https://maven.apache.org/pom.html#Version_Order_Specification) indicates that : 1-0-2 is equivalent to 1-2, so 1-0-2 = 1-2 > 1-1. That doesn't make much sense to me. I think the following line from the spec should be revised from: Then, starting from the end

Re: Are non-latin digits considered numeric for the Maven version order spec?

2018-05-30 Thread Ross Goldberg
Wed, May 30, 2018 at 1:01 PM Michael Osipov wrote: > Am 2018-05-30 um 18:16 schrieb Ross Goldberg: > > Are non-latin digits considered numeric for the Maven version order spec? > > > > Or should only latin (i.e. ASCII) digits be considered numeric? > > > >

Are non-latin digits considered numeric for the Maven version order spec?

2018-05-30 Thread Ross Goldberg
Are non-latin digits considered numeric for the Maven version order spec? Or should only latin (i.e. ASCII) digits be considered numeric? https://maven.apache.org/pom.html#Version_Order_Specification Thanks.