Re: Surefire/junit5 ETA?

2018-05-30 Thread Tibor Digana
We will release 2.22.0 with JUnit5. As we discussed pull request #184 there are two issues to finish. No, we are not working on cosmetic issues. T On Thu, May 31, 2018 at 1:40 AM, Olivier Lamy wrote: > Hi, > I can see some work happening on the donation branch. > Great job guys! > I'd like to kn

Surefire/junit5 ETA?

2018-05-30 Thread Olivier Lamy
Hi, I can see some work happening on the donation branch. Great job guys! I'd like to know if there is any plan to merge it to master and cut a release soon? Even a 3.0.0-beta-1? (including known bugs and missing features with this junit5 provider). Actually some opensource projects are a bit strug

[ANN] Apache Maven Invoker Plugin 3.1.0 Released

2018-05-30 Thread Olivier Lamy
Hi The Apache Maven team is pleased to announce the release of the Apache Maven Invoker Plugin, version 3.1.0 The Invoker Plugin is used to run a set of Maven projects. The plugin can determine whether each project execution is successful, and optionally can verify the output generated from a giv

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

2018-05-30 Thread Ross Goldberg
While ComparableVersion considers non-Latin digits as numeric because it uses Character.isDigit(char), ComparableVersion is buggy, so I can’t take its code as a spec. I’m making my own version parser that isn’t buggy; I want to ensure that I follow the intent rather than the existing code. On Wed

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

2018-05-30 Thread Michael Osipov
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? https://maven.apache.org/pom.html#Version_Order_Specification Have a look here: /maven-artifact/src/main/jav

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.