Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-03-02 Thread Anton Tanasenko
Hi guys, I've been reminded of another issue that was supposed to go into
3.4.0 at the time but seem to have forgotten about it when the 3.4-3.5
scrubbing thing happened.
It's https://issues.apache.org/jira/browse/MNG-6025
Really minor thing that doesn't affect maven itself, but could help a lot
when used as an embedded runtime in m2e along with other caches that are
already there.
Is it possible to have it included in consequent alphas/betas?

2017-03-01 10:43 GMT+02:00 Thomas Collignon :

> Yes +1 to improve withMaven with color support
>
> 2017-03-01 9:23 GMT+01:00 Arnaud Héritier :
>
> > I'll do some tests later but yes the advice is often to not use the Maven
> > Project type in Jenkins.
> > Using the ansi color plugin allows to display colors. I'll probably use
> > that path and configure it by default for maven jobs and/or I'll set -B
> if
> > it's not already done ...
> > For freestyle jobs I'm surprised that we force by default the -B
> > For pipeline we might support the color output by improving the withMaven
> > https://jenkins.io/doc/pipeline/steps/pipeline-maven/
> >
> >
> > On Wed, Mar 1, 2017 at 8:36 AM, Thomas Collignon 
> > wrote:
> >
> > > Yes Robert you have Right, Jenkins use -B by default
> > >
> > > In this case I have :
> > >
> > > - Maven Job
> > > - Jenkins 2.19.4
> > >
> > > Output command is :
> > >
> > > <===[JENKINS REMOTING CAPACITY]===>channel started
> > >
> > > Executing Maven:  -B -f /data/blabla/pom.xml -s
> > > /opt/apache-maven-3.5.0-alpha-1/conf/settings.xml -gs
> > > /opt/apache-maven-3.5.0-alpha-1/conf/settings.xml clean install
> > > -Dmaven.test.failure.ignore=true -T 4
> > >
> > >
> > > And I have  ugly output
> > >
> > > [ [1;34mINFO [m]
> > > [1m-
> > > ---
> > > [m
> > > [ [1;34mINFO [m]  [1mReactor Build Order: [m
> > > [ [1;34mINFO [m]
> > >
> > > So I have test another case :
> > >
> > > - Jenkins Freestyle Job with maven step
> > >
> > > Output command is :
> > >
> > > $ /opt/apache-maven-3.5.0-alpha-1/bin/mvn -f pom.xml -s
> > > /opt/apache-maven-3.5.0-alpha-1/conf/settings.xml -gs
> > > /opt/apache-maven-3.5.0-alpha-1/conf/settings.xml clean install
> > > -Dmaven.test.failure.ignore=true -T 4
> > >
> > > And in this case output is ok
> > >
> > > [INFO] 
> > > 
> > > [INFO] Reactor Build Order:
> > > [INFO]
> > >
> > > Last test :
> > >
> > > - Jenkins Pipeline
> > >
> > >
> > >
> > >
> > >
> > > *node {   checkout(blabla)   tool name: 'Maven 3.5.0-alpha-1', type:
> > > 'maven'   sh 'mvn clean install -B -Dmaven.test.failure.ignore=true -T
> > > 4'}*
> > >
> > > And in this case output is ok too
> > >
> > > Conclusion : do not use Jenkins Maven project :)
> > >
> > > => I will update my blog
> > >
> > >
> > > 2017-02-28 21:50 GMT+01:00 Robert Scholte :
> > >
> > > > bq. NOTE: in Jenkins by default the console output is ugly with maven
> > > > 3.5.0-alpha-1 (see next). To fix this the Ansi Color Plugin is
> > necessary
> > > !
> > > >
> > > > this is weird. I would expect Jenksins to always run in batch-mode
> > (-B),
> > > > which should disable Ansi.
> > > >
> > > > Robert
> > > >
> > > >
> > > > On Mon, 27 Feb 2017 23:40:51 +0100, thomas COLLIGNON <
> > > > tomiphon...@gmail.com> wrote:
> > > >
> > > > Hello,
> > > >>
> > > >> +1 for me too
> > > >>
> > > >> Tested on different projects with different kind of plugins, on
> MacOsX
> > > >> and Linux, IDE, CLI and IT
> > > >> If you want to see the details, I wrote a little post :
> > > >> https://tcollignon.github.io/2017/02/27/Test-Maven-350-alpha-1.html
> <
> > > >> https://tcollignon.github.io/2017/02/27/Test-Maven-350-alpha-1.html
> >
> > > >>
> > > >>
> > > >>
> > > >> Le 27 févr. 2017 à 22:48, Arnaud Héritier  a
> > > écrit :
> > > >>>
> > > >>> tested on several projects
> > > >>> +1
> > > >>>
> > > >>> On Mon, Feb 27, 2017 at 10:24 PM, Guillaume Boué  >
> > > >>> wrote:
> > > >>>
> > > >>> +1 from me too
> > > 
> > >  Tested with some Tycho builds of Spring and it worked fine. Also
> > > tested
> > >  on
> > >  FreeBSD / Ubuntu / Windows without issues.
> > > 
> > > 
> > >  Le 27/02/2017 à 19:11, Hervé BOUTEMY a écrit :
> > > 
> > >  I already voted, but I'll redo:
> > > >
> > > > +1
> > > >
> > > > tested with many builds: it works as well as I expected (near a
> RC
> > > > confidence)
> > > > Let's fix the identified little glitches, and we'll have our
> 3.5.0
> > > > final
> > > > :)
> > > >
> > > > Regards,
> > > >
> > > > Hervé
> > > >
> > > > Le lundi 27 février 2017, 14:42:12 CET Stephen Connolly a écrit :
> > > >
> > > > Hervé, Robert you have commented but I do not see a vote cast. I
> > > >> believe
> > > >> I
> > > 

Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-03-01 Thread Thomas Collignon
Yes +1 to improve withMaven with color support

2017-03-01 9:23 GMT+01:00 Arnaud Héritier :

> I'll do some tests later but yes the advice is often to not use the Maven
> Project type in Jenkins.
> Using the ansi color plugin allows to display colors. I'll probably use
> that path and configure it by default for maven jobs and/or I'll set -B if
> it's not already done ...
> For freestyle jobs I'm surprised that we force by default the -B
> For pipeline we might support the color output by improving the withMaven
> https://jenkins.io/doc/pipeline/steps/pipeline-maven/
>
>
> On Wed, Mar 1, 2017 at 8:36 AM, Thomas Collignon 
> wrote:
>
> > Yes Robert you have Right, Jenkins use -B by default
> >
> > In this case I have :
> >
> > - Maven Job
> > - Jenkins 2.19.4
> >
> > Output command is :
> >
> > <===[JENKINS REMOTING CAPACITY]===>channel started
> >
> > Executing Maven:  -B -f /data/blabla/pom.xml -s
> > /opt/apache-maven-3.5.0-alpha-1/conf/settings.xml -gs
> > /opt/apache-maven-3.5.0-alpha-1/conf/settings.xml clean install
> > -Dmaven.test.failure.ignore=true -T 4
> >
> >
> > And I have  ugly output
> >
> > [ [1;34mINFO [m]
> > [1m-
> > ---
> > [m
> > [ [1;34mINFO [m]  [1mReactor Build Order: [m
> > [ [1;34mINFO [m]
> >
> > So I have test another case :
> >
> > - Jenkins Freestyle Job with maven step
> >
> > Output command is :
> >
> > $ /opt/apache-maven-3.5.0-alpha-1/bin/mvn -f pom.xml -s
> > /opt/apache-maven-3.5.0-alpha-1/conf/settings.xml -gs
> > /opt/apache-maven-3.5.0-alpha-1/conf/settings.xml clean install
> > -Dmaven.test.failure.ignore=true -T 4
> >
> > And in this case output is ok
> >
> > [INFO] 
> > 
> > [INFO] Reactor Build Order:
> > [INFO]
> >
> > Last test :
> >
> > - Jenkins Pipeline
> >
> >
> >
> >
> >
> > *node {   checkout(blabla)   tool name: 'Maven 3.5.0-alpha-1', type:
> > 'maven'   sh 'mvn clean install -B -Dmaven.test.failure.ignore=true -T
> > 4'}*
> >
> > And in this case output is ok too
> >
> > Conclusion : do not use Jenkins Maven project :)
> >
> > => I will update my blog
> >
> >
> > 2017-02-28 21:50 GMT+01:00 Robert Scholte :
> >
> > > bq. NOTE: in Jenkins by default the console output is ugly with maven
> > > 3.5.0-alpha-1 (see next). To fix this the Ansi Color Plugin is
> necessary
> > !
> > >
> > > this is weird. I would expect Jenksins to always run in batch-mode
> (-B),
> > > which should disable Ansi.
> > >
> > > Robert
> > >
> > >
> > > On Mon, 27 Feb 2017 23:40:51 +0100, thomas COLLIGNON <
> > > tomiphon...@gmail.com> wrote:
> > >
> > > Hello,
> > >>
> > >> +1 for me too
> > >>
> > >> Tested on different projects with different kind of plugins, on MacOsX
> > >> and Linux, IDE, CLI and IT
> > >> If you want to see the details, I wrote a little post :
> > >> https://tcollignon.github.io/2017/02/27/Test-Maven-350-alpha-1.html <
> > >> https://tcollignon.github.io/2017/02/27/Test-Maven-350-alpha-1.html>
> > >>
> > >>
> > >>
> > >> Le 27 févr. 2017 à 22:48, Arnaud Héritier  a
> > écrit :
> > >>>
> > >>> tested on several projects
> > >>> +1
> > >>>
> > >>> On Mon, Feb 27, 2017 at 10:24 PM, Guillaume Boué 
> > >>> wrote:
> > >>>
> > >>> +1 from me too
> > 
> >  Tested with some Tycho builds of Spring and it worked fine. Also
> > tested
> >  on
> >  FreeBSD / Ubuntu / Windows without issues.
> > 
> > 
> >  Le 27/02/2017 à 19:11, Hervé BOUTEMY a écrit :
> > 
> >  I already voted, but I'll redo:
> > >
> > > +1
> > >
> > > tested with many builds: it works as well as I expected (near a RC
> > > confidence)
> > > Let's fix the identified little glitches, and we'll have our 3.5.0
> > > final
> > > :)
> > >
> > > Regards,
> > >
> > > Hervé
> > >
> > > Le lundi 27 février 2017, 14:42:12 CET Stephen Connolly a écrit :
> > >
> > > Hervé, Robert you have commented but I do not see a vote cast. I
> > >> believe
> > >> I
> > >> have 3 binding votes, but as one of those is mine I would be more
> > >> comfortable with some more
> > >>
> > >> On 23 February 2017 at 16:10, Stephen Connolly <
> > >>
> > >> stephen.alan.conno...@gmail.com> wrote:
> > >>
> > >> Hi,
> > >>>
> > >>> We solved 65 issues:
> > >>> https://issues.apache.org/jira/secure/ReleaseNote.jspa?
> > >>> projectId=12316922=12339664=Text
> > >>>
> > >>> There are still a couple of issues left in JIRA for 3.5.0, but I
> do
> > >>> not
> > >>> think any of those are blocking an alpha release:
> > >>> https://issues.apache.org/jira/issues/?jql=project%20%
> > >>> 3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20AND%
> > >>> 20fixVersion%20in%20(3.5.0%2C%203.5.0-candidate)%20ORDER%
> > >>> 

Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-03-01 Thread Arnaud Héritier
I'll do some tests later but yes the advice is often to not use the Maven
Project type in Jenkins.
Using the ansi color plugin allows to display colors. I'll probably use
that path and configure it by default for maven jobs and/or I'll set -B if
it's not already done ...
For freestyle jobs I'm surprised that we force by default the -B
For pipeline we might support the color output by improving the withMaven
https://jenkins.io/doc/pipeline/steps/pipeline-maven/


On Wed, Mar 1, 2017 at 8:36 AM, Thomas Collignon 
wrote:

> Yes Robert you have Right, Jenkins use -B by default
>
> In this case I have :
>
> - Maven Job
> - Jenkins 2.19.4
>
> Output command is :
>
> <===[JENKINS REMOTING CAPACITY]===>channel started
>
> Executing Maven:  -B -f /data/blabla/pom.xml -s
> /opt/apache-maven-3.5.0-alpha-1/conf/settings.xml -gs
> /opt/apache-maven-3.5.0-alpha-1/conf/settings.xml clean install
> -Dmaven.test.failure.ignore=true -T 4
>
>
> And I have  ugly output
>
> [ [1;34mINFO [m]
> [1m-
> ---
> [m
> [ [1;34mINFO [m]  [1mReactor Build Order: [m
> [ [1;34mINFO [m]
>
> So I have test another case :
>
> - Jenkins Freestyle Job with maven step
>
> Output command is :
>
> $ /opt/apache-maven-3.5.0-alpha-1/bin/mvn -f pom.xml -s
> /opt/apache-maven-3.5.0-alpha-1/conf/settings.xml -gs
> /opt/apache-maven-3.5.0-alpha-1/conf/settings.xml clean install
> -Dmaven.test.failure.ignore=true -T 4
>
> And in this case output is ok
>
> [INFO] 
> 
> [INFO] Reactor Build Order:
> [INFO]
>
> Last test :
>
> - Jenkins Pipeline
>
>
>
>
>
> *node {   checkout(blabla)   tool name: 'Maven 3.5.0-alpha-1', type:
> 'maven'   sh 'mvn clean install -B -Dmaven.test.failure.ignore=true -T
> 4'}*
>
> And in this case output is ok too
>
> Conclusion : do not use Jenkins Maven project :)
>
> => I will update my blog
>
>
> 2017-02-28 21:50 GMT+01:00 Robert Scholte :
>
> > bq. NOTE: in Jenkins by default the console output is ugly with maven
> > 3.5.0-alpha-1 (see next). To fix this the Ansi Color Plugin is necessary
> !
> >
> > this is weird. I would expect Jenksins to always run in batch-mode (-B),
> > which should disable Ansi.
> >
> > Robert
> >
> >
> > On Mon, 27 Feb 2017 23:40:51 +0100, thomas COLLIGNON <
> > tomiphon...@gmail.com> wrote:
> >
> > Hello,
> >>
> >> +1 for me too
> >>
> >> Tested on different projects with different kind of plugins, on MacOsX
> >> and Linux, IDE, CLI and IT
> >> If you want to see the details, I wrote a little post :
> >> https://tcollignon.github.io/2017/02/27/Test-Maven-350-alpha-1.html <
> >> https://tcollignon.github.io/2017/02/27/Test-Maven-350-alpha-1.html>
> >>
> >>
> >>
> >> Le 27 févr. 2017 à 22:48, Arnaud Héritier  a
> écrit :
> >>>
> >>> tested on several projects
> >>> +1
> >>>
> >>> On Mon, Feb 27, 2017 at 10:24 PM, Guillaume Boué 
> >>> wrote:
> >>>
> >>> +1 from me too
> 
>  Tested with some Tycho builds of Spring and it worked fine. Also
> tested
>  on
>  FreeBSD / Ubuntu / Windows without issues.
> 
> 
>  Le 27/02/2017 à 19:11, Hervé BOUTEMY a écrit :
> 
>  I already voted, but I'll redo:
> >
> > +1
> >
> > tested with many builds: it works as well as I expected (near a RC
> > confidence)
> > Let's fix the identified little glitches, and we'll have our 3.5.0
> > final
> > :)
> >
> > Regards,
> >
> > Hervé
> >
> > Le lundi 27 février 2017, 14:42:12 CET Stephen Connolly a écrit :
> >
> > Hervé, Robert you have commented but I do not see a vote cast. I
> >> believe
> >> I
> >> have 3 binding votes, but as one of those is mine I would be more
> >> comfortable with some more
> >>
> >> On 23 February 2017 at 16:10, Stephen Connolly <
> >>
> >> stephen.alan.conno...@gmail.com> wrote:
> >>
> >> Hi,
> >>>
> >>> We solved 65 issues:
> >>> https://issues.apache.org/jira/secure/ReleaseNote.jspa?
> >>> projectId=12316922=12339664=Text
> >>>
> >>> There are still a couple of issues left in JIRA for 3.5.0, but I do
> >>> not
> >>> think any of those are blocking an alpha release:
> >>> https://issues.apache.org/jira/issues/?jql=project%20%
> >>> 3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20AND%
> >>> 20fixVersion%20in%20(3.5.0%2C%203.5.0-candidate)%20ORDER%
> >>> 20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC
> >>>
> >>> In addition there are 315 issues left in JIRA for Maven core:
> >>> https://issues.apache.org/jira/issues/?jql=project%20%
> >>> 3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20ORDER%
> >>> 20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC
> >>>
> >>> Staging repo:
> >>> https://repository.apache.org/content/repositories/maven-1324
> >>>

Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-28 Thread Thomas Collignon
Yes Robert you have Right, Jenkins use -B by default

In this case I have :

- Maven Job
- Jenkins 2.19.4

Output command is :

<===[JENKINS REMOTING CAPACITY]===>channel started

Executing Maven:  -B -f /data/blabla/pom.xml -s
/opt/apache-maven-3.5.0-alpha-1/conf/settings.xml -gs
/opt/apache-maven-3.5.0-alpha-1/conf/settings.xml clean install
-Dmaven.test.failure.ignore=true -T 4


And I have  ugly output

[ [1;34mINFO [m]
[1m
[m
[ [1;34mINFO [m]  [1mReactor Build Order: [m
[ [1;34mINFO [m]

So I have test another case :

- Jenkins Freestyle Job with maven step

Output command is :

$ /opt/apache-maven-3.5.0-alpha-1/bin/mvn -f pom.xml -s
/opt/apache-maven-3.5.0-alpha-1/conf/settings.xml -gs
/opt/apache-maven-3.5.0-alpha-1/conf/settings.xml clean install
-Dmaven.test.failure.ignore=true -T 4

And in this case output is ok

[INFO] 
[INFO] Reactor Build Order:
[INFO]

Last test :

- Jenkins Pipeline





*node {   checkout(blabla)   tool name: 'Maven 3.5.0-alpha-1', type:
'maven'   sh 'mvn clean install -B -Dmaven.test.failure.ignore=true -T
4'}*

And in this case output is ok too

Conclusion : do not use Jenkins Maven project :)

=> I will update my blog


2017-02-28 21:50 GMT+01:00 Robert Scholte :

> bq. NOTE: in Jenkins by default the console output is ugly with maven
> 3.5.0-alpha-1 (see next). To fix this the Ansi Color Plugin is necessary !
>
> this is weird. I would expect Jenksins to always run in batch-mode (-B),
> which should disable Ansi.
>
> Robert
>
>
> On Mon, 27 Feb 2017 23:40:51 +0100, thomas COLLIGNON <
> tomiphon...@gmail.com> wrote:
>
> Hello,
>>
>> +1 for me too
>>
>> Tested on different projects with different kind of plugins, on MacOsX
>> and Linux, IDE, CLI and IT
>> If you want to see the details, I wrote a little post :
>> https://tcollignon.github.io/2017/02/27/Test-Maven-350-alpha-1.html <
>> https://tcollignon.github.io/2017/02/27/Test-Maven-350-alpha-1.html>
>>
>>
>>
>> Le 27 févr. 2017 à 22:48, Arnaud Héritier  a écrit :
>>>
>>> tested on several projects
>>> +1
>>>
>>> On Mon, Feb 27, 2017 at 10:24 PM, Guillaume Boué 
>>> wrote:
>>>
>>> +1 from me too

 Tested with some Tycho builds of Spring and it worked fine. Also tested
 on
 FreeBSD / Ubuntu / Windows without issues.


 Le 27/02/2017 à 19:11, Hervé BOUTEMY a écrit :

 I already voted, but I'll redo:
>
> +1
>
> tested with many builds: it works as well as I expected (near a RC
> confidence)
> Let's fix the identified little glitches, and we'll have our 3.5.0
> final
> :)
>
> Regards,
>
> Hervé
>
> Le lundi 27 février 2017, 14:42:12 CET Stephen Connolly a écrit :
>
> Hervé, Robert you have commented but I do not see a vote cast. I
>> believe
>> I
>> have 3 binding votes, but as one of those is mine I would be more
>> comfortable with some more
>>
>> On 23 February 2017 at 16:10, Stephen Connolly <
>>
>> stephen.alan.conno...@gmail.com> wrote:
>>
>> Hi,
>>>
>>> We solved 65 issues:
>>> https://issues.apache.org/jira/secure/ReleaseNote.jspa?
>>> projectId=12316922=12339664=Text
>>>
>>> There are still a couple of issues left in JIRA for 3.5.0, but I do
>>> not
>>> think any of those are blocking an alpha release:
>>> https://issues.apache.org/jira/issues/?jql=project%20%
>>> 3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20AND%
>>> 20fixVersion%20in%20(3.5.0%2C%203.5.0-candidate)%20ORDER%
>>> 20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC
>>>
>>> In addition there are 315 issues left in JIRA for Maven core:
>>> https://issues.apache.org/jira/issues/?jql=project%20%
>>> 3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20ORDER%
>>> 20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC
>>>
>>> Staging repo:
>>> https://repository.apache.org/content/repositories/maven-1324
>>>
>>> The distributable binaries and sources for testing can be found here:
>>> https://repository.apache.org/content/repositories/maven-> >
>>> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/
>>>
>>> Specifically the zip, tarball, and source archives can be found here:
>>> https://repository.apache.org/content/repositories/maven-> >
>>> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
>>> maven-3.5.0-alpha-1-bin.zip
>>> https://repository.apache.org/content/repositories/maven-> >
>>> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
>>> maven-3.5.0-alpha-1-bin.tar.gz
>>> https://repository.apache.org/content/repositories/maven-> >
>>> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
>>> maven-3.5.0-alpha-1-src.zip
>>> 

Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-28 Thread Robert Scholte
bq. NOTE: in Jenkins by default the console output is ugly with maven  
3.5.0-alpha-1 (see next). To fix this the Ansi Color Plugin is necessary !


this is weird. I would expect Jenksins to always run in batch-mode (-B),  
which should disable Ansi.


Robert


On Mon, 27 Feb 2017 23:40:51 +0100, thomas COLLIGNON  
 wrote:



Hello,

+1 for me too

Tested on different projects with different kind of plugins, on MacOsX  
and Linux, IDE, CLI and IT
If you want to see the details, I wrote a little post :  
https://tcollignon.github.io/2017/02/27/Test-Maven-350-alpha-1.html  




Le 27 févr. 2017 à 22:48, Arnaud Héritier  a écrit  
:


tested on several projects
+1

On Mon, Feb 27, 2017 at 10:24 PM, Guillaume Boué   
wrote:



+1 from me too

Tested with some Tycho builds of Spring and it worked fine. Also  
tested on

FreeBSD / Ubuntu / Windows without issues.


Le 27/02/2017 à 19:11, Hervé BOUTEMY a écrit :


I already voted, but I'll redo:

+1

tested with many builds: it works as well as I expected (near a RC
confidence)
Let's fix the identified little glitches, and we'll have our 3.5.0  
final

:)

Regards,

Hervé

Le lundi 27 février 2017, 14:42:12 CET Stephen Connolly a écrit :

Hervé, Robert you have commented but I do not see a vote cast. I  
believe

I
have 3 binding votes, but as one of those is mine I would be more
comfortable with some more

On 23 February 2017 at 16:10, Stephen Connolly <

stephen.alan.conno...@gmail.com> wrote:


Hi,

We solved 65 issues:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?
projectId=12316922=12339664=Text

There are still a couple of issues left in JIRA for 3.5.0, but I do  
not

think any of those are blocking an alpha release:
https://issues.apache.org/jira/issues/?jql=project%20%
3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20AND%
20fixVersion%20in%20(3.5.0%2C%203.5.0-candidate)%20ORDER%
20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC

In addition there are 315 issues left in JIRA for Maven core:
https://issues.apache.org/jira/issues/?jql=project%20%
3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20ORDER%
20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC

Staging repo:
https://repository.apache.org/content/repositories/maven-1324

The distributable binaries and sources for testing can be found  
here:

https://repository.apache.org/content/repositories/maven-> >
1324/org/apache/maven/apache-maven/3.5.0-alpha-1/

Specifically the zip, tarball, and source archives can be found  
here:

https://repository.apache.org/content/repositories/maven-> >
1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
maven-3.5.0-alpha-1-bin.zip
https://repository.apache.org/content/repositories/maven-> >
1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
maven-3.5.0-alpha-1-bin.tar.gz
https://repository.apache.org/content/repositories/maven-> >
1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
maven-3.5.0-alpha-1-src.zip
https://repository.apache.org/content/repositories/maven-> >
1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
maven-3.5.0-alpha-1-src.tar.gz

Source release checksum(s):
apache-maven-3.5.0-alpha-1-src.tar.gz sha1:
6055696aece5b0bfdd0308dae60838
b37e218aba
apache-maven-3.5.0-alpha-1-src.zip sha1:  
7d6adcdf8929205bf20399c71c6a2b

db9ee4f6dd

Git tag:
https://git-wip-us.apache.org/repos/asf?p=maven.git;a=commit;h=
8e6bbc4d4aa7cdc837625a05358c98ca15f72698

Staging site:
https://people.apache.org/~stephenc/maven-3.5.0-alpha-1/

Vote open for 72 hours.

[ ] +1
[ ] +0
[ ] -1


Thanks,
-Stephen





-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org




---
L'absence de virus dans ce courrier électronique a été vérifiée par le
logiciel antivirus Avast.
https://www.avast.com/antivirus


-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org





--
-
Arnaud Héritier
http://aheritier.net
Mail/GTalk: aheritier AT gmail DOT com
Twitter/Skype : aheritier


-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



[RESULT] [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-28 Thread Stephen Connolly
On 23 February 2017 at 16:10, Stephen Connolly <
stephen.alan.conno...@gmail.com> wrote:

> Hi,
>
> We solved 65 issues:
> https://issues.apache.org/jira/secure/ReleaseNote.jspa?
> projectId=12316922=12339664=Text
>
> There are still a couple of issues left in JIRA for 3.5.0, but I do not
> think any of those are blocking an alpha release:
> https://issues.apache.org/jira/issues/?jql=project%20%
> 3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20AND%
> 20fixVersion%20in%20(3.5.0%2C%203.5.0-candidate)%20ORDER%
> 20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC
>
> In addition there are 315 issues left in JIRA for Maven core:
> https://issues.apache.org/jira/issues/?jql=project%20%
> 3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20ORDER%
> 20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC
>
> Staging repo:
> https://repository.apache.org/content/repositories/maven-1324
>
> The distributable binaries and sources for testing can be found here:
> https://repository.apache.org/content/repositories/maven-
> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/
>
> Specifically the zip, tarball, and source archives can be found here:
> https://repository.apache.org/content/repositories/maven-
> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> maven-3.5.0-alpha-1-bin.zip
> https://repository.apache.org/content/repositories/maven-
> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> maven-3.5.0-alpha-1-bin.tar.gz
> https://repository.apache.org/content/repositories/maven-
> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> maven-3.5.0-alpha-1-src.zip
> https://repository.apache.org/content/repositories/maven-
> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> maven-3.5.0-alpha-1-src.tar.gz
>
> Source release checksum(s):
> apache-maven-3.5.0-alpha-1-src.tar.gz sha1: 6055696aece5b0bfdd0308dae60838
> b37e218aba
> apache-maven-3.5.0-alpha-1-src.zip sha1: 7d6adcdf8929205bf20399c71c6a2b
> db9ee4f6dd
>
> Git tag:
> https://git-wip-us.apache.org/repos/asf?p=maven.git;a=commit;h=
> 8e6bbc4d4aa7cdc837625a05358c98ca15f72698
>
> Staging site:
> https://people.apache.org/~stephenc/maven-3.5.0-alpha-1/
>
> Vote open for 72 hours.
>
> [ ] +1
> [ ] +0
> [ ] -1
>
>
+1: Stephen Connolly (binding), Tibor Digana (binding), Karl Heinz Marbaise
(binding), Christian Schulte, Grzegorz Grzybek, Petr Široký, Petar
Tahchiev, Hervé Boutemy (binding), Robert Scholte (binding), Andreas Gudian
(binding), Daniel Kulp (binding), Guillaume Boué, Arnaud Héritier
(binding), Mark Derricutt, Ralph Goers (binding)
+0:
-1:

This vote has passed and we have at least three binding votes. I will
proceed with the release process.

Apologies if I have missed counting your vote. Thank you very much to
everyone who has contributed to this release


> Thanks,
> -Stephen
>


Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-27 Thread Ralph Goers
+1

Ralph

> On Feb 27, 2017, at 11:51 AM, Stephen Connolly 
> <stephen.alan.conno...@gmail.com> wrote:
> 
> Any more PMC members care to vote?
> 
> -- Forwarded message -
> From: Stephen Connolly <stephen.alan.conno...@gmail.com 
> <mailto:stephen.alan.conno...@gmail.com>>
> Date: Mon 27 Feb 2017 at 14:42
> Subject: Re: [VOTE] Release Apache Maven 3.5.0-alpha-1
> To: Maven Developers List <dev@maven.apache.org <mailto:dev@maven.apache.org>>
> 
> 
> Hervé, Robert you have commented but I do not see a vote cast. I believe I 
> have 3 binding votes, but as one of those is mine I would be more comfortable 
> with some more
> 
> On 23 February 2017 at 16:10, Stephen Connolly 
> <stephen.alan.conno...@gmail.com <mailto:stephen.alan.conno...@gmail.com>> 
> wrote:
> Hi,
> 
> We solved 65 issues:
> https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922=12339664=Text
>  
> <https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922=12339664=Text>
> 
> There are still a couple of issues left in JIRA for 3.5.0, but I do not think 
> any of those are blocking an alpha release:
> https://issues.apache.org/jira/issues/?jql=project%20%3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20AND%20fixVersion%20in%20(3.5.0%2C%203.5.0-candidate)%20ORDER%20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC
>  
> <https://issues.apache.org/jira/issues/?jql=project%20%3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20AND%20fixVersion%20in%20(3.5.0%2C%203.5.0-candidate)%20ORDER%20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC>
> 
> In addition there are 315 issues left in JIRA for Maven core:
> https://issues.apache.org/jira/issues/?jql=project%20%3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20ORDER%20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC
>  
> <https://issues.apache.org/jira/issues/?jql=project%20%3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20ORDER%20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC>
> 
> Staging repo:
> https://repository.apache.org/content/repositories/maven-1324 
> <https://repository.apache.org/content/repositories/maven-1324>
> 
> The distributable binaries and sources for testing can be found here:
> https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/
>  
> <https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/>
> 
> Specifically the zip, tarball, and source archives can be found here:
> https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-bin.zip
>  
> <https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-bin.zip>
> https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-bin.tar.gz
>  
> <https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-bin.tar.gz>
> https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-src.zip
>  
> <https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-src.zip>
> https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-src.tar.gz
>  
> <https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-src.tar.gz>
> 
> Source release checksum(s):
> apache-maven-3.5.0-alpha-1-src.tar.gz sha1: 
> 6055696aece5b0bfdd0308dae60838b37e218aba
> apache-maven-3.5.0-alpha-1-src.zip sha1: 
> 7d6adcdf8929205bf20399c71c6a2bdb9ee4f6dd
> 
> Git tag:
> https://git-wip-us.apache.org/repos/asf?p=maven.git;a=commit;h=8e6bbc4d4aa7cdc837625a05358c98ca15f72698
>  
> <https://git-wip-us.apache.org/repos/asf?p=maven.git;a=commit;h=8e6bbc4d4aa7cdc837625a05358c98ca15f72698>
> 
> Staging site:
> https://people.apache.org/~stephenc/maven-3.5.0-alpha-1/ 
> <https://people.apache.org/~stephenc/maven-3.5.0-alpha-1/>
> 
> Vote open for 72 hours.
> 
> [ ] +1
> [ ] +0
> [ ] -1
> 
> 
> Thanks,
> -Stephen
> -- 
> Sent from my phone



Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-27 Thread thomas COLLIGNON
Hello,

+1 for me too

Tested on different projects with different kind of plugins, on MacOsX and 
Linux, IDE, CLI and IT
If you want to see the details, I wrote a little post : 
https://tcollignon.github.io/2017/02/27/Test-Maven-350-alpha-1.html 



> Le 27 févr. 2017 à 22:48, Arnaud Héritier  a écrit :
> 
> tested on several projects
> +1
> 
> On Mon, Feb 27, 2017 at 10:24 PM, Guillaume Boué  wrote:
> 
>> +1 from me too
>> 
>> Tested with some Tycho builds of Spring and it worked fine. Also tested on
>> FreeBSD / Ubuntu / Windows without issues.
>> 
>> 
>> Le 27/02/2017 à 19:11, Hervé BOUTEMY a écrit :
>> 
>>> I already voted, but I'll redo:
>>> 
>>> +1
>>> 
>>> tested with many builds: it works as well as I expected (near a RC
>>> confidence)
>>> Let's fix the identified little glitches, and we'll have our 3.5.0 final
>>> :)
>>> 
>>> Regards,
>>> 
>>> Hervé
>>> 
>>> Le lundi 27 février 2017, 14:42:12 CET Stephen Connolly a écrit :
>>> 
 Hervé, Robert you have commented but I do not see a vote cast. I believe
 I
 have 3 binding votes, but as one of those is mine I would be more
 comfortable with some more
 
 On 23 February 2017 at 16:10, Stephen Connolly <
 
 stephen.alan.conno...@gmail.com> wrote:
 
> Hi,
> 
> We solved 65 issues:
> https://issues.apache.org/jira/secure/ReleaseNote.jspa?
> projectId=12316922=12339664=Text
> 
> There are still a couple of issues left in JIRA for 3.5.0, but I do not
> think any of those are blocking an alpha release:
> https://issues.apache.org/jira/issues/?jql=project%20%
> 3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20AND%
> 20fixVersion%20in%20(3.5.0%2C%203.5.0-candidate)%20ORDER%
> 20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC
> 
> In addition there are 315 issues left in JIRA for Maven core:
> https://issues.apache.org/jira/issues/?jql=project%20%
> 3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20ORDER%
> 20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC
> 
> Staging repo:
> https://repository.apache.org/content/repositories/maven-1324
> 
> The distributable binaries and sources for testing can be found here:
> https://repository.apache.org/content/repositories/maven-> >
> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/
> 
> Specifically the zip, tarball, and source archives can be found here:
> https://repository.apache.org/content/repositories/maven-> >
> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> maven-3.5.0-alpha-1-bin.zip
> https://repository.apache.org/content/repositories/maven-> >
> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> maven-3.5.0-alpha-1-bin.tar.gz
> https://repository.apache.org/content/repositories/maven-> >
> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> maven-3.5.0-alpha-1-src.zip
> https://repository.apache.org/content/repositories/maven-> >
> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> maven-3.5.0-alpha-1-src.tar.gz
> 
> Source release checksum(s):
> apache-maven-3.5.0-alpha-1-src.tar.gz sha1:
> 6055696aece5b0bfdd0308dae60838
> b37e218aba
> apache-maven-3.5.0-alpha-1-src.zip sha1: 7d6adcdf8929205bf20399c71c6a2b
> db9ee4f6dd
> 
> Git tag:
> https://git-wip-us.apache.org/repos/asf?p=maven.git;a=commit;h=
> 8e6bbc4d4aa7cdc837625a05358c98ca15f72698
> 
> Staging site:
> https://people.apache.org/~stephenc/maven-3.5.0-alpha-1/
> 
> Vote open for 72 hours.
> 
> [ ] +1
> [ ] +0
> [ ] -1
> 
> 
> Thanks,
> -Stephen
> 
 
>>> 
>>> -
>>> To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
>>> For additional commands, e-mail: dev-h...@maven.apache.org
>>> 
>>> 
>> 
>> ---
>> L'absence de virus dans ce courrier électronique a été vérifiée par le
>> logiciel antivirus Avast.
>> https://www.avast.com/antivirus
>> 
>> 
>> -
>> To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
>> For additional commands, e-mail: dev-h...@maven.apache.org
>> 
>> 
> 
> 
> -- 
> -
> Arnaud Héritier
> http://aheritier.net
> Mail/GTalk: aheritier AT gmail DOT com
> Twitter/Skype : aheritier



Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-27 Thread Mark Derricutt
On 28 Feb 2017, at 7:11, Hervé BOUTEMY wrote:

> I already voted, but I'll redo:
>
> +1

+200 from me :)


-- 
Mark Derricutt
http://www.theoryinpractice.net
http://www.chaliceofblood.net
http://plus.google.com/+MarkDerricutt
http://twitter.com/talios
http://facebook.com/mderricutt


signature.asc
Description: OpenPGP digital signature


Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-27 Thread Arnaud Héritier
 tested on several projects
+1

On Mon, Feb 27, 2017 at 10:24 PM, Guillaume Boué  wrote:

> +1 from me too
>
> Tested with some Tycho builds of Spring and it worked fine. Also tested on
> FreeBSD / Ubuntu / Windows without issues.
>
>
> Le 27/02/2017 à 19:11, Hervé BOUTEMY a écrit :
>
>> I already voted, but I'll redo:
>>
>> +1
>>
>> tested with many builds: it works as well as I expected (near a RC
>> confidence)
>> Let's fix the identified little glitches, and we'll have our 3.5.0 final
>> :)
>>
>> Regards,
>>
>> Hervé
>>
>> Le lundi 27 février 2017, 14:42:12 CET Stephen Connolly a écrit :
>>
>>> Hervé, Robert you have commented but I do not see a vote cast. I believe
>>> I
>>> have 3 binding votes, but as one of those is mine I would be more
>>> comfortable with some more
>>>
>>> On 23 February 2017 at 16:10, Stephen Connolly <
>>>
>>> stephen.alan.conno...@gmail.com> wrote:
>>>
 Hi,

 We solved 65 issues:
 https://issues.apache.org/jira/secure/ReleaseNote.jspa?
 projectId=12316922=12339664=Text

 There are still a couple of issues left in JIRA for 3.5.0, but I do not
 think any of those are blocking an alpha release:
 https://issues.apache.org/jira/issues/?jql=project%20%
 3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20AND%
 20fixVersion%20in%20(3.5.0%2C%203.5.0-candidate)%20ORDER%
 20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC

 In addition there are 315 issues left in JIRA for Maven core:
 https://issues.apache.org/jira/issues/?jql=project%20%
 3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20ORDER%
 20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC

 Staging repo:
 https://repository.apache.org/content/repositories/maven-1324

 The distributable binaries and sources for testing can be found here:
 https://repository.apache.org/content/repositories/maven-> >
 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/

 Specifically the zip, tarball, and source archives can be found here:
 https://repository.apache.org/content/repositories/maven-> >
 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
 maven-3.5.0-alpha-1-bin.zip
 https://repository.apache.org/content/repositories/maven-> >
 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
 maven-3.5.0-alpha-1-bin.tar.gz
 https://repository.apache.org/content/repositories/maven-> >
 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
 maven-3.5.0-alpha-1-src.zip
 https://repository.apache.org/content/repositories/maven-> >
 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
 maven-3.5.0-alpha-1-src.tar.gz

 Source release checksum(s):
 apache-maven-3.5.0-alpha-1-src.tar.gz sha1:
 6055696aece5b0bfdd0308dae60838
 b37e218aba
 apache-maven-3.5.0-alpha-1-src.zip sha1: 7d6adcdf8929205bf20399c71c6a2b
 db9ee4f6dd

 Git tag:
 https://git-wip-us.apache.org/repos/asf?p=maven.git;a=commit;h=
 8e6bbc4d4aa7cdc837625a05358c98ca15f72698

 Staging site:
 https://people.apache.org/~stephenc/maven-3.5.0-alpha-1/

 Vote open for 72 hours.

 [ ] +1
 [ ] +0
 [ ] -1


 Thanks,
 -Stephen

>>>
>>
>> -
>> To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
>> For additional commands, e-mail: dev-h...@maven.apache.org
>>
>>
>
> ---
> L'absence de virus dans ce courrier électronique a été vérifiée par le
> logiciel antivirus Avast.
> https://www.avast.com/antivirus
>
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
> For additional commands, e-mail: dev-h...@maven.apache.org
>
>


-- 
-
Arnaud Héritier
http://aheritier.net
Mail/GTalk: aheritier AT gmail DOT com
Twitter/Skype : aheritier


Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-27 Thread Guillaume Boué

+1 from me too

Tested with some Tycho builds of Spring and it worked fine. Also tested 
on FreeBSD / Ubuntu / Windows without issues.


Le 27/02/2017 à 19:11, Hervé BOUTEMY a écrit :

I already voted, but I'll redo:

+1

tested with many builds: it works as well as I expected (near a RC confidence)
Let's fix the identified little glitches, and we'll have our 3.5.0 final :)

Regards,

Hervé

Le lundi 27 février 2017, 14:42:12 CET Stephen Connolly a écrit :

Hervé, Robert you have commented but I do not see a vote cast. I believe I
have 3 binding votes, but as one of those is mine I would be more
comfortable with some more

On 23 February 2017 at 16:10, Stephen Connolly <

stephen.alan.conno...@gmail.com> wrote:

Hi,

We solved 65 issues:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?
projectId=12316922=12339664=Text

There are still a couple of issues left in JIRA for 3.5.0, but I do not
think any of those are blocking an alpha release:
https://issues.apache.org/jira/issues/?jql=project%20%
3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20AND%
20fixVersion%20in%20(3.5.0%2C%203.5.0-candidate)%20ORDER%
20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC

In addition there are 315 issues left in JIRA for Maven core:
https://issues.apache.org/jira/issues/?jql=project%20%
3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20ORDER%
20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC

Staging repo:
https://repository.apache.org/content/repositories/maven-1324

The distributable binaries and sources for testing can be found here:
https://repository.apache.org/content/repositories/maven-> > 
1324/org/apache/maven/apache-maven/3.5.0-alpha-1/

Specifically the zip, tarball, and source archives can be found here:
https://repository.apache.org/content/repositories/maven-> > 
1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
maven-3.5.0-alpha-1-bin.zip
https://repository.apache.org/content/repositories/maven-> > 
1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
maven-3.5.0-alpha-1-bin.tar.gz
https://repository.apache.org/content/repositories/maven-> > 
1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
maven-3.5.0-alpha-1-src.zip
https://repository.apache.org/content/repositories/maven-> > 
1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
maven-3.5.0-alpha-1-src.tar.gz

Source release checksum(s):
apache-maven-3.5.0-alpha-1-src.tar.gz sha1: 6055696aece5b0bfdd0308dae60838
b37e218aba
apache-maven-3.5.0-alpha-1-src.zip sha1: 7d6adcdf8929205bf20399c71c6a2b
db9ee4f6dd

Git tag:
https://git-wip-us.apache.org/repos/asf?p=maven.git;a=commit;h=
8e6bbc4d4aa7cdc837625a05358c98ca15f72698

Staging site:
https://people.apache.org/~stephenc/maven-3.5.0-alpha-1/

Vote open for 72 hours.

[ ] +1
[ ] +0
[ ] -1


Thanks,
-Stephen



-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org




---
L'absence de virus dans ce courrier électronique a été vérifiée par le logiciel 
antivirus Avast.
https://www.avast.com/antivirus


-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-27 Thread Andreas Gudian
+1

Really awesome stuff, everyone!

(I tested with a good range of projects, some of them having different
versions of some karaf-maven-plugins that tend to break with Maven updates
-- everything was smooth, though.)


2017-02-23 17:10 GMT+01:00 Stephen Connolly :

> Hi,
>
> We solved 65 issues:
> https://issues.apache.org/jira/secure/ReleaseNote.jspa?
> projectId=12316922=12339664=Text
>
> There are still a couple of issues left in JIRA for 3.5.0, but I do not
> think any of those are blocking an alpha release:
> https://issues.apache.org/jira/issues/?jql=project%20%
> 3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20AND%
> 20fixVersion%20in%20(3.5.0%2C%203.5.0-candidate)%20ORDER%
> 20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC
>
> In addition there are 315 issues left in JIRA for Maven core:
> https://issues.apache.org/jira/issues/?jql=project%20%
> 3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20ORDER%
> 20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC
>
> Staging repo:
> https://repository.apache.org/content/repositories/maven-1324
>
> The distributable binaries and sources for testing can be found here:
> https://repository.apache.org/content/repositories/maven-
> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/
>
> Specifically the zip, tarball, and source archives can be found here:
> https://repository.apache.org/content/repositories/maven-
> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> maven-3.5.0-alpha-1-bin.zip
> https://repository.apache.org/content/repositories/maven-
> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> maven-3.5.0-alpha-1-bin.tar.gz
> https://repository.apache.org/content/repositories/maven-
> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> maven-3.5.0-alpha-1-src.zip
> https://repository.apache.org/content/repositories/maven-
> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> maven-3.5.0-alpha-1-src.tar.gz
>
> Source release checksum(s):
> apache-maven-3.5.0-alpha-1-src.tar.gz sha1:
> 6055696aece5b0bfdd0308dae60838b37e218aba
> apache-maven-3.5.0-alpha-1-src.zip sha1:
> 7d6adcdf8929205bf20399c71c6a2bdb9ee4f6dd
>
> Git tag:
> https://git-wip-us.apache.org/repos/asf?p=maven.git;a=commit;h=
> 8e6bbc4d4aa7cdc837625a05358c98ca15f72698
>
> Staging site:
> https://people.apache.org/~stephenc/maven-3.5.0-alpha-1/
>
> Vote open for 72 hours.
>
> [ ] +1
> [ ] +0
> [ ] -1
>
>
> Thanks,
> -Stephen
>


Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-27 Thread Daniel Kulp
+1

Did some very basic tests running CXF builds and it all seems to work OK.  Not 
very elaborate set of tests though.

Dan



> On Feb 27, 2017, at 9:42 AM, Stephen Connolly 
>  wrote:
> 
> Hervé, Robert you have commented but I do not see a vote cast. I believe I
> have 3 binding votes, but as one of those is mine I would be more
> comfortable with some more
> 
> On 23 February 2017 at 16:10, Stephen Connolly <
> stephen.alan.conno...@gmail.com> wrote:
> 
>> Hi,
>> 
>> We solved 65 issues:
>> https://issues.apache.org/jira/secure/ReleaseNote.jspa?
>> projectId=12316922=12339664=Text
>> 
>> There are still a couple of issues left in JIRA for 3.5.0, but I do not
>> think any of those are blocking an alpha release:
>> https://issues.apache.org/jira/issues/?jql=project%20%
>> 3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20AND%
>> 20fixVersion%20in%20(3.5.0%2C%203.5.0-candidate)%20ORDER%
>> 20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC
>> 
>> In addition there are 315 issues left in JIRA for Maven core:
>> https://issues.apache.org/jira/issues/?jql=project%20%
>> 3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20ORDER%
>> 20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC
>> 
>> Staging repo:
>> https://repository.apache.org/content/repositories/maven-1324
>> 
>> The distributable binaries and sources for testing can be found here:
>> https://repository.apache.org/content/repositories/maven-
>> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/
>> 
>> Specifically the zip, tarball, and source archives can be found here:
>> https://repository.apache.org/content/repositories/maven-
>> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
>> maven-3.5.0-alpha-1-bin.zip
>> https://repository.apache.org/content/repositories/maven-
>> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
>> maven-3.5.0-alpha-1-bin.tar.gz
>> https://repository.apache.org/content/repositories/maven-
>> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
>> maven-3.5.0-alpha-1-src.zip
>> https://repository.apache.org/content/repositories/maven-
>> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
>> maven-3.5.0-alpha-1-src.tar.gz
>> 
>> Source release checksum(s):
>> apache-maven-3.5.0-alpha-1-src.tar.gz sha1: 6055696aece5b0bfdd0308dae60838
>> b37e218aba
>> apache-maven-3.5.0-alpha-1-src.zip sha1: 7d6adcdf8929205bf20399c71c6a2b
>> db9ee4f6dd
>> 
>> Git tag:
>> https://git-wip-us.apache.org/repos/asf?p=maven.git;a=commit;h=
>> 8e6bbc4d4aa7cdc837625a05358c98ca15f72698
>> 
>> Staging site:
>> https://people.apache.org/~stephenc/maven-3.5.0-alpha-1/
>> 
>> Vote open for 72 hours.
>> 
>> [ ] +1
>> [ ] +0
>> [ ] -1
>> 
>> 
>> Thanks,
>> -Stephen
>> 

-- 
Daniel Kulp
dk...@apache.org - http://dankulp.com/blog
Talend Community Coder - http://coders.talend.com


-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-27 Thread Hervé BOUTEMY
I already voted, but I'll redo:

+1

tested with many builds: it works as well as I expected (near a RC confidence)
Let's fix the identified little glitches, and we'll have our 3.5.0 final :)

Regards,

Hervé

Le lundi 27 février 2017, 14:42:12 CET Stephen Connolly a écrit :
> Hervé, Robert you have commented but I do not see a vote cast. I believe I
> have 3 binding votes, but as one of those is mine I would be more
> comfortable with some more
> 
> On 23 February 2017 at 16:10, Stephen Connolly <
> 
> stephen.alan.conno...@gmail.com> wrote:
> > Hi,
> > 
> > We solved 65 issues:
> > https://issues.apache.org/jira/secure/ReleaseNote.jspa?
> > projectId=12316922=12339664=Text
> > 
> > There are still a couple of issues left in JIRA for 3.5.0, but I do not
> > think any of those are blocking an alpha release:
> > https://issues.apache.org/jira/issues/?jql=project%20%
> > 3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20AND%
> > 20fixVersion%20in%20(3.5.0%2C%203.5.0-candidate)%20ORDER%
> > 20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC
> > 
> > In addition there are 315 issues left in JIRA for Maven core:
> > https://issues.apache.org/jira/issues/?jql=project%20%
> > 3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20ORDER%
> > 20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC
> > 
> > Staging repo:
> > https://repository.apache.org/content/repositories/maven-1324
> > 
> > The distributable binaries and sources for testing can be found here:
> > https://repository.apache.org/content/repositories/maven-> > 
> > 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/
> > 
> > Specifically the zip, tarball, and source archives can be found here:
> > https://repository.apache.org/content/repositories/maven-> > 
> > 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> > maven-3.5.0-alpha-1-bin.zip
> > https://repository.apache.org/content/repositories/maven-> > 
> > 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> > maven-3.5.0-alpha-1-bin.tar.gz
> > https://repository.apache.org/content/repositories/maven-> > 
> > 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> > maven-3.5.0-alpha-1-src.zip
> > https://repository.apache.org/content/repositories/maven-> > 
> > 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> > maven-3.5.0-alpha-1-src.tar.gz
> > 
> > Source release checksum(s):
> > apache-maven-3.5.0-alpha-1-src.tar.gz sha1: 6055696aece5b0bfdd0308dae60838
> > b37e218aba
> > apache-maven-3.5.0-alpha-1-src.zip sha1: 7d6adcdf8929205bf20399c71c6a2b
> > db9ee4f6dd
> > 
> > Git tag:
> > https://git-wip-us.apache.org/repos/asf?p=maven.git;a=commit;h=
> > 8e6bbc4d4aa7cdc837625a05358c98ca15f72698
> > 
> > Staging site:
> > https://people.apache.org/~stephenc/maven-3.5.0-alpha-1/
> > 
> > Vote open for 72 hours.
> > 
> > [ ] +1
> > [ ] +0
> > [ ] -1
> > 
> > 
> > Thanks,
> > -Stephen



-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-27 Thread Robert Scholte

alpha-quality, right? ;)

I haven't witnessed any regression, so +1

Robert

On Mon, 27 Feb 2017 15:42:12 +0100, Stephen Connolly  
 wrote:


Hervé, Robert you have commented but I do not see a vote cast. I believe  
I

have 3 binding votes, but as one of those is mine I would be more
comfortable with some more

On 23 February 2017 at 16:10, Stephen Connolly <
stephen.alan.conno...@gmail.com> wrote:


Hi,

We solved 65 issues:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?
projectId=12316922=12339664=Text

There are still a couple of issues left in JIRA for 3.5.0, but I do not
think any of those are blocking an alpha release:
https://issues.apache.org/jira/issues/?jql=project%20%
3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20AND%
20fixVersion%20in%20(3.5.0%2C%203.5.0-candidate)%20ORDER%
20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC

In addition there are 315 issues left in JIRA for Maven core:
https://issues.apache.org/jira/issues/?jql=project%20%
3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20ORDER%
20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC

Staging repo:
https://repository.apache.org/content/repositories/maven-1324

The distributable binaries and sources for testing can be found here:
https://repository.apache.org/content/repositories/maven-
1324/org/apache/maven/apache-maven/3.5.0-alpha-1/

Specifically the zip, tarball, and source archives can be found here:
https://repository.apache.org/content/repositories/maven-
1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
maven-3.5.0-alpha-1-bin.zip
https://repository.apache.org/content/repositories/maven-
1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
maven-3.5.0-alpha-1-bin.tar.gz
https://repository.apache.org/content/repositories/maven-
1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
maven-3.5.0-alpha-1-src.zip
https://repository.apache.org/content/repositories/maven-
1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
maven-3.5.0-alpha-1-src.tar.gz

Source release checksum(s):
apache-maven-3.5.0-alpha-1-src.tar.gz sha1:  
6055696aece5b0bfdd0308dae60838

b37e218aba
apache-maven-3.5.0-alpha-1-src.zip sha1: 7d6adcdf8929205bf20399c71c6a2b
db9ee4f6dd

Git tag:
https://git-wip-us.apache.org/repos/asf?p=maven.git;a=commit;h=
8e6bbc4d4aa7cdc837625a05358c98ca15f72698

Staging site:
https://people.apache.org/~stephenc/maven-3.5.0-alpha-1/

Vote open for 72 hours.

[ ] +1
[ ] +0
[ ] -1


Thanks,
-Stephen


-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-27 Thread Stephen Connolly
Hervé, Robert you have commented but I do not see a vote cast. I believe I
have 3 binding votes, but as one of those is mine I would be more
comfortable with some more

On 23 February 2017 at 16:10, Stephen Connolly <
stephen.alan.conno...@gmail.com> wrote:

> Hi,
>
> We solved 65 issues:
> https://issues.apache.org/jira/secure/ReleaseNote.jspa?
> projectId=12316922=12339664=Text
>
> There are still a couple of issues left in JIRA for 3.5.0, but I do not
> think any of those are blocking an alpha release:
> https://issues.apache.org/jira/issues/?jql=project%20%
> 3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20AND%
> 20fixVersion%20in%20(3.5.0%2C%203.5.0-candidate)%20ORDER%
> 20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC
>
> In addition there are 315 issues left in JIRA for Maven core:
> https://issues.apache.org/jira/issues/?jql=project%20%
> 3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20ORDER%
> 20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC
>
> Staging repo:
> https://repository.apache.org/content/repositories/maven-1324
>
> The distributable binaries and sources for testing can be found here:
> https://repository.apache.org/content/repositories/maven-
> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/
>
> Specifically the zip, tarball, and source archives can be found here:
> https://repository.apache.org/content/repositories/maven-
> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> maven-3.5.0-alpha-1-bin.zip
> https://repository.apache.org/content/repositories/maven-
> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> maven-3.5.0-alpha-1-bin.tar.gz
> https://repository.apache.org/content/repositories/maven-
> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> maven-3.5.0-alpha-1-src.zip
> https://repository.apache.org/content/repositories/maven-
> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> maven-3.5.0-alpha-1-src.tar.gz
>
> Source release checksum(s):
> apache-maven-3.5.0-alpha-1-src.tar.gz sha1: 6055696aece5b0bfdd0308dae60838
> b37e218aba
> apache-maven-3.5.0-alpha-1-src.zip sha1: 7d6adcdf8929205bf20399c71c6a2b
> db9ee4f6dd
>
> Git tag:
> https://git-wip-us.apache.org/repos/asf?p=maven.git;a=commit;h=
> 8e6bbc4d4aa7cdc837625a05358c98ca15f72698
>
> Staging site:
> https://people.apache.org/~stephenc/maven-3.5.0-alpha-1/
>
> Vote open for 72 hours.
>
> [ ] +1
> [ ] +0
> [ ] -1
>
>
> Thanks,
> -Stephen
>


Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-26 Thread Tibor Digana
@Stephen
The problem is no problem.
Sorry my bad during private method refactoring in an IT.
No issue.


On Sun, Feb 26, 2017 at 2:03 PM, stephenconnolly [via Maven] <
ml-node+s40175n5900267...@n5.nabble.com> wrote:

> We can investigate...
>
> Could also be an invoker issue as we are just effectively passing through
> the parsed options
> On Sun 26 Feb 2017 at 12:59, Tibor Digana <[hidden email]
> >
> wrote:
>
> > @Stephen
> > I have an issue with system properties. Could it be caused by the
> Builder?
> > There is no space  between *-Dtest=* and profile *-P*
> > clean -Dsurefire.version=2.19.2-SNAPSHOT *-Dtest=-P* surefire-junit47
> test
> >
> > Since this is JUnit 4.8 test only, this happened after I removed TestNG
> > useless system properties.
> >
> >
> >
> > On Thu, Feb 23, 2017 at 5:10 PM, Stephen Connolly <
> > [hidden email] >
> wrote:
> >
> > > Hi,
> > >
> > > We solved 65 issues:
> > > https://issues.apache.org/jira/secure/ReleaseNote.jspa?
> > > projectId=12316922=12339664=Text
> > >
> > > There are still a couple of issues left in JIRA for 3.5.0, but I do
> not
> > > think any of those are blocking an alpha release:
> > > https://issues.apache.org/jira/issues/?jql=project%20%;>
> https://issues.apache.org/jira/issues/?jql=project%20%
> > > 3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20AND%
> > > 20fixVersion%20in%20(3.5.0%2C%203.5.0-candidate)%20ORDER%
> > > 20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC
> > >
> > > In addition there are 315 issues left in JIRA for Maven core:
> > > https://issues.apache.org/jira/issues/?jql=project%20%;>
> https://issues.apache.org/jira/issues/?jql=project%20%
> > > 3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20ORDER%
> > > 20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC
> > >
> > > Staging repo:
> > > https://repository.apache.org/content/repositories/maven-1324
> > >
> > > The distributable binaries and sources for testing can be found here:
> > > https://repository.apache.org/content/repositories/maven-
> > > 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/
> > >
> > > Specifically the zip, tarball, and source archives can be found here:
> > > https://repository.apache.org/content/repositories/maven-
> > > 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> > > maven-3.5.0-alpha-1-bin.zip
> > > https://repository.apache.org/content/repositories/maven-
> > > 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> > > maven-3.5.0-alpha-1-bin.tar.gz
> > > https://repository.apache.org/content/repositories/maven-
> > > 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> > > maven-3.5.0-alpha-1-src.zip
> > > https://repository.apache.org/content/repositories/maven-
> > > 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> > > maven-3.5.0-alpha-1-src.tar.gz
> > >
> > > Source release checksum(s):
> > > apache-maven-3.5.0-alpha-1-src.tar.gz sha1:
> > > 6055696aece5b0bfdd0308dae60838b37e218aba
> > > apache-maven-3.5.0-alpha-1-src.zip sha1:
> > > 7d6adcdf8929205bf20399c71c6a2bdb9ee4f6dd
> > >
> > > Git tag:
> > > https://git-wip-us.apache.org/repos/asf?p=maven.git;a=commit;h=
> > > 8e6bbc4d4aa7cdc837625a05358c98ca15f72698
> > >
> > > Staging site:
> > > https://people.apache.org/~stephenc/maven-3.5.0-alpha-1/
> > >
> > > Vote open for 72 hours.
> > >
> > > [ ] +1
> > > [ ] +0
> > > [ ] -1
> > >
> > >
> > > Thanks,
> > > -Stephen
> > >
> >
> >
> >
> > --
> > Cheers
> > Tibor
> >
> --
> Sent from my phone
>
>
> --
> If you reply to this email, your message will be added to the discussion
> below:
> http://maven.40175.n5.nabble.com/VOTE-Release-Apache-Maven-3-5-0-alpha-1-
> tp5899775p5900267.html
> To start a new topic under Maven Developers, email
> ml-node+s40175n142166...@n5.nabble.com
> To unsubscribe from Maven Developers, click here
> 
> .
> NAML
> 
>




--
View this message in context: 
http://maven.40175.n5.nabble.com/VOTE-Release-Apache-Maven-3-5-0-alpha-1-tp5899775p5900270.html
Sent from the Maven Developers mailing list archive at Nabble.com.

Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-26 Thread Stephen Connolly
We can investigate...

Could also be an invoker issue as we are just effectively passing through
the parsed options
On Sun 26 Feb 2017 at 12:59, Tibor Digana 
wrote:

> @Stephen
> I have an issue with system properties. Could it be caused by the Builder?
> There is no space  between *-Dtest=* and profile *-P*
> clean -Dsurefire.version=2.19.2-SNAPSHOT *-Dtest=-P* surefire-junit47 test
>
> Since this is JUnit 4.8 test only, this happened after I removed TestNG
> useless system properties.
>
>
>
> On Thu, Feb 23, 2017 at 5:10 PM, Stephen Connolly <
> stephen.alan.conno...@gmail.com> wrote:
>
> > Hi,
> >
> > We solved 65 issues:
> > https://issues.apache.org/jira/secure/ReleaseNote.jspa?
> > projectId=12316922=12339664=Text
> >
> > There are still a couple of issues left in JIRA for 3.5.0, but I do not
> > think any of those are blocking an alpha release:
> > https://issues.apache.org/jira/issues/?jql=project%20%
> > 3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20AND%
> > 20fixVersion%20in%20(3.5.0%2C%203.5.0-candidate)%20ORDER%
> > 20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC
> >
> > In addition there are 315 issues left in JIRA for Maven core:
> > https://issues.apache.org/jira/issues/?jql=project%20%
> > 3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20ORDER%
> > 20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC
> >
> > Staging repo:
> > https://repository.apache.org/content/repositories/maven-1324
> >
> > The distributable binaries and sources for testing can be found here:
> > https://repository.apache.org/content/repositories/maven-
> > 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/
> >
> > Specifically the zip, tarball, and source archives can be found here:
> > https://repository.apache.org/content/repositories/maven-
> > 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> > maven-3.5.0-alpha-1-bin.zip
> > https://repository.apache.org/content/repositories/maven-
> > 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> > maven-3.5.0-alpha-1-bin.tar.gz
> > https://repository.apache.org/content/repositories/maven-
> > 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> > maven-3.5.0-alpha-1-src.zip
> > https://repository.apache.org/content/repositories/maven-
> > 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> > maven-3.5.0-alpha-1-src.tar.gz
> >
> > Source release checksum(s):
> > apache-maven-3.5.0-alpha-1-src.tar.gz sha1:
> > 6055696aece5b0bfdd0308dae60838b37e218aba
> > apache-maven-3.5.0-alpha-1-src.zip sha1:
> > 7d6adcdf8929205bf20399c71c6a2bdb9ee4f6dd
> >
> > Git tag:
> > https://git-wip-us.apache.org/repos/asf?p=maven.git;a=commit;h=
> > 8e6bbc4d4aa7cdc837625a05358c98ca15f72698
> >
> > Staging site:
> > https://people.apache.org/~stephenc/maven-3.5.0-alpha-1/
> >
> > Vote open for 72 hours.
> >
> > [ ] +1
> > [ ] +0
> > [ ] -1
> >
> >
> > Thanks,
> > -Stephen
> >
>
>
>
> --
> Cheers
> Tibor
>
-- 
Sent from my phone


Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-26 Thread Tibor Digana
@Stephen
I have an issue with system properties. Could it be caused by the Builder?
There is no space  between *-Dtest=* and profile *-P*
clean -Dsurefire.version=2.19.2-SNAPSHOT *-Dtest=-P* surefire-junit47 test

Since this is JUnit 4.8 test only, this happened after I removed TestNG
useless system properties.



On Thu, Feb 23, 2017 at 5:10 PM, Stephen Connolly <
stephen.alan.conno...@gmail.com> wrote:

> Hi,
>
> We solved 65 issues:
> https://issues.apache.org/jira/secure/ReleaseNote.jspa?
> projectId=12316922=12339664=Text
>
> There are still a couple of issues left in JIRA for 3.5.0, but I do not
> think any of those are blocking an alpha release:
> https://issues.apache.org/jira/issues/?jql=project%20%
> 3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20AND%
> 20fixVersion%20in%20(3.5.0%2C%203.5.0-candidate)%20ORDER%
> 20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC
>
> In addition there are 315 issues left in JIRA for Maven core:
> https://issues.apache.org/jira/issues/?jql=project%20%
> 3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20ORDER%
> 20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC
>
> Staging repo:
> https://repository.apache.org/content/repositories/maven-1324
>
> The distributable binaries and sources for testing can be found here:
> https://repository.apache.org/content/repositories/maven-
> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/
>
> Specifically the zip, tarball, and source archives can be found here:
> https://repository.apache.org/content/repositories/maven-
> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> maven-3.5.0-alpha-1-bin.zip
> https://repository.apache.org/content/repositories/maven-
> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> maven-3.5.0-alpha-1-bin.tar.gz
> https://repository.apache.org/content/repositories/maven-
> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> maven-3.5.0-alpha-1-src.zip
> https://repository.apache.org/content/repositories/maven-
> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> maven-3.5.0-alpha-1-src.tar.gz
>
> Source release checksum(s):
> apache-maven-3.5.0-alpha-1-src.tar.gz sha1:
> 6055696aece5b0bfdd0308dae60838b37e218aba
> apache-maven-3.5.0-alpha-1-src.zip sha1:
> 7d6adcdf8929205bf20399c71c6a2bdb9ee4f6dd
>
> Git tag:
> https://git-wip-us.apache.org/repos/asf?p=maven.git;a=commit;h=
> 8e6bbc4d4aa7cdc837625a05358c98ca15f72698
>
> Staging site:
> https://people.apache.org/~stephenc/maven-3.5.0-alpha-1/
>
> Vote open for 72 hours.
>
> [ ] +1
> [ ] +0
> [ ] -1
>
>
> Thanks,
> -Stephen
>



-- 
Cheers
Tibor


Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-26 Thread Hervé BOUTEMY
FYI, I published the reference documentation
http://maven.apache.org/ref/3-LATEST/

just did classical "mvn -Preporting site site:stage" followed by "mvn scm-
publish:publish-scm" as defined in documentation [1]

once the vote is validated, just follow the next steps to publish the 
versioned reference documentation from the staging area

Regards,

Hervé

[1] 
http://maven.apache.org/developers/website/deploy-component-reference-documentation.html#Staging_component_reference_documentation

Le dimanche 26 février 2017, 11:32:48 CET Hervé BOUTEMY a écrit :
> +1
> 
> tested with many builds: it works as well as I expected (near a RC
> confidence) Let's fix the identified little glitches, and we'll have our
> 3.5.0 final :)
> 
> Regards,
> 
> Hervé
> 
> Le jeudi 23 février 2017, 16:10:18 CET Stephen Connolly a écrit :
> > Hi,
> > 
> > We solved 65 issues:
> > https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922;
> > ve rsion=12339664=Text
> > 
> > There are still a couple of issues left in JIRA for 3.5.0, but I do not
> > think any of those are blocking an alpha release:
> > https://issues.apache.org/jira/issues/?jql=project%20%3D%20MNG%20AND%20res
> > ol
> > ution%20%3D%20Unresolved%20AND%20fixVersion%20in%20(3.5.0%2C%203.5.0-cand
> > ida te)%20ORDER%20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC
> > 
> > In addition there are 315 issues left in JIRA for Maven core:
> > https://issues.apache.org/jira/issues/?jql=project%20%3D%20MNG%20AND%20res
> > ol
> > ution%20%3D%20Unresolved%20ORDER%20BY%20due%20ASC%2C%20priority%20DESC%2C
> > %20 created%20ASC
> > 
> > Staging repo:
> > https://repository.apache.org/content/repositories/maven-1324
> > 
> > The distributable binaries and sources for testing can be found here:
> > https://repository.apache.org/content/repositories/maven-1324/org/apache/m
> > av en/apache-maven/3.5.0-alpha-1/
> > 
> > Specifically the zip, tarball, and source archives can be found here:
> > https://repository.apache.org/content/repositories/maven-1324/org/apache/m
> > av en/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-bin.zip
> > https://repository.apache.org/content/repositories/maven-1324/org/apache/m
> > a
> > ven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-bin.tar.gz
> > https://repository.apache.org/content/repositories/maven-1324/org/apache/m
> > a
> > ven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-src.zip
> > https://repository.apache.org/content/repositories/maven-1324/org/apache/m
> > a
> > ven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-src.tar.gz
> > 
> > Source release checksum(s):
> > apache-maven-3.5.0-alpha-1-src.tar.gz sha1:
> > 6055696aece5b0bfdd0308dae60838b37e218aba
> > apache-maven-3.5.0-alpha-1-src.zip sha1:
> > 7d6adcdf8929205bf20399c71c6a2bdb9ee4f6dd
> > 
> > Git tag:
> > https://git-wip-us.apache.org/repos/asf?p=maven.git;a=commit;h=8e6bbc4d4aa
> > 7c dc837625a05358c98ca15f72698
> > 
> > Staging site:
> > https://people.apache.org/~stephenc/maven-3.5.0-alpha-1/
> > 
> > Vote open for 72 hours.
> > 
> > [ ] +1
> > [ ] +0
> > [ ] -1
> > 
> > 
> > Thanks,
> > -Stephen
> 
> -
> To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
> For additional commands, e-mail: dev-h...@maven.apache.org



-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-26 Thread Tibor Digana
>> CLI would print a WARNING, because it shows some strange
situation that people didn't expect

Duplicates of sys props should be logged with Warning on console.
I totally agree with Herve.
Good catch, Herve!



On Sun, Feb 26, 2017 at 11:20 AM, Hervé BOUTEMY [via Maven] <
ml-node+s40175n5900192...@n5.nabble.com> wrote:

> on this, I don't have exactly same opinion:
> yes, Maven 3.5.0 should behave like Maven 3.3.9, then we should fix Maven
> as
> much as possible and not force Surefire ITs to be changed
>
> but if Surefire ITs define multiple times the same property on CLI, then
> use a
> edge case, removing the demendency on this edge case would not be a bad
> idea:
> in fact, I'd expect in a future Maven version that such multiple
> definition of
> a property on CLI would print a WARNING, because it shows some strange
> situation that people didn't expect
>
> Regards,
>
> Hervé
>
> Le dimanche 26 février 2017, 07:03:05 CET Christian Schulte a écrit :
>
> > Am 02/25/17 um 17:25 schrieb Tibor Digana:
> > >>> There are two commits for MNG-6078 part of -alpha-1.
> > >
> > > This was caused by system property duplicates in surefire ITs.
> > > It is already fixed in a branch SUREFIRE_SYSPROP_DUPLICATES.
> >
> > If something works with 3.3.9 but not 3.5.0, we need to fix it in Maven.
> > I think this is what Stephen did. No need to "fix" surefire ITs, if they
> > were working with 3.3.9 before. 3.5.0 would not be a drop in replacement
> > anymore that way.
> >
> > Regards,
>
>
>
> -
> To unsubscribe, e-mail: [hidden email]
> 
> For additional commands, e-mail: [hidden email]
> 
>
>
>
> --
> If you reply to this email, your message will be added to the discussion
> below:
> http://maven.40175.n5.nabble.com/VOTE-Release-Apache-Maven-3-5-0-alpha-1-
> tp5899775p5900192.html
> To start a new topic under Maven Developers, email
> ml-node+s40175n142166...@n5.nabble.com
> To unsubscribe from Maven Developers, click here
> 
> .
> NAML
> 
>




--
View this message in context: 
http://maven.40175.n5.nabble.com/VOTE-Release-Apache-Maven-3-5-0-alpha-1-tp5899775p5900216.html
Sent from the Maven Developers mailing list archive at Nabble.com.

Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-26 Thread Hervé BOUTEMY
+1

tested with many builds: it works as well as I expected (near a RC confidence)
Let's fix the identified little glitches, and we'll have our 3.5.0 final :)

Regards,

Hervé

Le jeudi 23 février 2017, 16:10:18 CET Stephen Connolly a écrit :
> Hi,
> 
> We solved 65 issues:
> https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922
> rsion=12339664=Text
> 
> There are still a couple of issues left in JIRA for 3.5.0, but I do not
> think any of those are blocking an alpha release:
> https://issues.apache.org/jira/issues/?jql=project%20%3D%20MNG%20AND%20resol
> ution%20%3D%20Unresolved%20AND%20fixVersion%20in%20(3.5.0%2C%203.5.0-candida
> te)%20ORDER%20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC
> 
> In addition there are 315 issues left in JIRA for Maven core:
> https://issues.apache.org/jira/issues/?jql=project%20%3D%20MNG%20AND%20resol
> ution%20%3D%20Unresolved%20ORDER%20BY%20due%20ASC%2C%20priority%20DESC%2C%20
> created%20ASC
> 
> Staging repo:
> https://repository.apache.org/content/repositories/maven-1324
> 
> The distributable binaries and sources for testing can be found here:
> https://repository.apache.org/content/repositories/maven-1324/org/apache/mav
> en/apache-maven/3.5.0-alpha-1/
> 
> Specifically the zip, tarball, and source archives can be found here:
> https://repository.apache.org/content/repositories/maven-1324/org/apache/mav
> en/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-bin.zip
> https://repository.apache.org/content/repositories/maven-1324/org/apache/ma
> ven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-bin.tar.gz
> https://repository.apache.org/content/repositories/maven-1324/org/apache/ma
> ven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-src.zip
> https://repository.apache.org/content/repositories/maven-1324/org/apache/ma
> ven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-src.tar.gz
> 
> Source release checksum(s):
> apache-maven-3.5.0-alpha-1-src.tar.gz sha1:
> 6055696aece5b0bfdd0308dae60838b37e218aba
> apache-maven-3.5.0-alpha-1-src.zip sha1:
> 7d6adcdf8929205bf20399c71c6a2bdb9ee4f6dd
> 
> Git tag:
> https://git-wip-us.apache.org/repos/asf?p=maven.git;a=commit;h=8e6bbc4d4aa7c
> dc837625a05358c98ca15f72698
> 
> Staging site:
> https://people.apache.org/~stephenc/maven-3.5.0-alpha-1/
> 
> Vote open for 72 hours.
> 
> [ ] +1
> [ ] +0
> [ ] -1
> 
> 
> Thanks,
> -Stephen



-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-26 Thread Hervé BOUTEMY
on this, I don't have exactly same opinion:
yes, Maven 3.5.0 should behave like Maven 3.3.9, then we should fix Maven as 
much as possible and not force Surefire ITs to be changed

but if Surefire ITs define multiple times the same property on CLI, then use a 
edge case, removing the demendency on this edge case would not be a bad idea: 
in fact, I'd expect in a future Maven version that such multiple definition of 
a property on CLI would print a WARNING, because it shows some strange 
situation that people didn't expect

Regards,

Hervé

Le dimanche 26 février 2017, 07:03:05 CET Christian Schulte a écrit :
> Am 02/25/17 um 17:25 schrieb Tibor Digana:
> >>> There are two commits for MNG-6078 part of -alpha-1.
> > 
> > This was caused by system property duplicates in surefire ITs.
> > It is already fixed in a branch SUREFIRE_SYSPROP_DUPLICATES.
> 
> If something works with 3.3.9 but not 3.5.0, we need to fix it in Maven.
> I think this is what Stephen did. No need to "fix" surefire ITs, if they
> were working with 3.3.9 before. 3.5.0 would not be a drop in replacement
> anymore that way.
> 
> Regards,



-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-25 Thread Christian Schulte
Am 02/25/17 um 17:25 schrieb Tibor Digana:
>>> There are two commits for MNG-6078 part of -alpha-1.
> 
> This was caused by system property duplicates in surefire ITs.
> It is already fixed in a branch SUREFIRE_SYSPROP_DUPLICATES.

If something works with 3.3.9 but not 3.5.0, we need to fix it in Maven.
I think this is what Stephen did. No need to "fix" surefire ITs, if they
were working with 3.3.9 before. 3.5.0 would not be a drop in replacement
anymore that way.

Regards,
-- 
Christian


-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-25 Thread Stephen Connolly
I think it might be better if we could release them into a different repo
so that the artifacts are available - just not synced to central.

Either that or we say screw it sync to central... al least if we make them
available via dist.

If we don't make available via dist, then yes we should just drop... but
then we cannot have non-engaged users contribute to testing as if we are
not supposed to make generally available non-voted artifacts... and voted
artifacts are supposed to be on dist.

(Perhaps we need to move this portion of debate to a separate thread)

On Sat 25 Feb 2017 at 21:00, Robert Scholte  wrote:

> I would say: all pre-final should be dropped, i.e. should not up in
> Central.
> However, we could make the distributions available for download.
> If this is done via the staged repository or via our dist folder[1], I
> don't mind; whatever fits best.
>
> Robert
>
> [1] https://archive.apache.org/dist/maven/maven-3/
>
> On Sat, 25 Feb 2017 19:56:16 +0100, Stephen Connolly
>  wrote:
>
> > We need to start thinking whether any of the issues so far are enough to
> > drop alpha-1 and run with alpha-2
> >
> > IMHO we would gain more information from users if we release alpha-1 with
> > and ACK for the known issues and say that alpha-2 is 1-2 weeks away
> > rather
> > than drop alpha-1 and wait that time for alpha-2. These are alpha
> > versions,
> > as long as we are thorough with our known issues, I would expect users
> > will
> > forgive us WDYT?
> >
> > On 25 February 2017 at 16:50, Michael Osipov 
> wrote:
> >
> >> Am 2017-02-25 um 17:07 schrieb Robert Scholte:
> >>
> >>> Hi,
> >>>
> >>> found a non-critical issue. It seems like with every Maven build, a new
> >>> lib/ext/jansi-64-1-xxx.13 is generated.
> >>> If this is a temp-file, I'd rather write it to the OS temp folder
> >>> instead of the Maven distribution.
> >>>
> >>
> >> This is horribly ugly by Jansi and Hawt JNI.
> >> This has been introduced in b80915b8822b51aafa962a9ef53a61c0ac59033d.
> >> Before reset, I had a separate ticket for that and performed a single
> >> commit. After reset Hervé and me agreed to merge this into MNG-3507. The
> >> issue is MNG-6115. See also the reasoning. It was intented to avoid the
> >> constant extraction from JAR to {java.io.tmpdir}.
> >>
> >> I expected library.jansi.path to be read-only. Alternatively, we should
> >> expand all native libraries to {maven.home}/lib/ext/jansi and see if
> >> this
> >> works. {maven.home} must be remain read-only.
> >>
> >> Michael
> >>
> >>
> >> On Thu, 23 Feb 2017 17:10:18 +0100, Stephen Connolly
> >>>  wrote:
> >>>
> >>> Hi,
> 
>  We solved 65 issues:
>  https://issues.apache.org/jira/secure/ReleaseNote.jspa?proje
>  ctId=12316922=12339664=Text
> 
> 
>  There are still a couple of issues left in JIRA for 3.5.0, but I do
>  not
>  think any of those are blocking an alpha release:
>  https://issues.apache.org/jira/issues/?jql=project%20%3D%
>  20MNG%20AND%20resolution%20%3D%20Unresolved%20AND%20fixVer
>  sion%20in%20(3.5.0%2C%203.5.0-candidate)%20ORDER%20BY%20due%
>  20ASC%2C%20priority%20DESC%2C%20created%20ASC
> 
> 
>  In addition there are 315 issues left in JIRA for Maven core:
>  https://issues.apache.org/jira/issues/?jql=project%20%3D%
>  20MNG%20AND%20resolution%20%3D%20Unresolved%20ORDER%20BY%
>  20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC
> 
> 
>  Staging repo:
>  https://repository.apache.org/content/repositories/maven-1324
> 
>  The distributable binaries and sources for testing can be found here:
>  https://repository.apache.org/content/repositories/maven-132
>  4/org/apache/maven/apache-maven/3.5.0-alpha-1/
> 
> 
>  Specifically the zip, tarball, and source archives can be found here:
>  https://repository.apache.org/content/repositories/maven-132
>  4/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-
>  3.5.0-alpha-1-bin.zip
> 
>  https://repository.apache.org/content/repositories/maven-132
>  4/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-
>  3.5.0-alpha-1-bin.tar.gz
> 
>  https://repository.apache.org/content/repositories/maven-132
>  4/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-
>  3.5.0-alpha-1-src.zip
> 
>  https://repository.apache.org/content/repositories/maven-132
>  4/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-
>  3.5.0-alpha-1-src.tar.gz
> 
> 
>  Source release checksum(s):
>  apache-maven-3.5.0-alpha-1-src.tar.gz sha1:
>  6055696aece5b0bfdd0308dae60838b37e218aba
>  apache-maven-3.5.0-alpha-1-src.zip sha1:
>  7d6adcdf8929205bf20399c71c6a2bdb9ee4f6dd
> 
>  Git tag:
>  https://git-wip-us.apache.org/repos/asf?p=maven.git;a=commit
>  

Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-25 Thread Robert Scholte
I would say: all pre-final should be dropped, i.e. should not up in  
Central.

However, we could make the distributions available for download.
If this is done via the staged repository or via our dist folder[1], I  
don't mind; whatever fits best.


Robert

[1] https://archive.apache.org/dist/maven/maven-3/

On Sat, 25 Feb 2017 19:56:16 +0100, Stephen Connolly  
 wrote:



We need to start thinking whether any of the issues so far are enough to
drop alpha-1 and run with alpha-2

IMHO we would gain more information from users if we release alpha-1 with
and ACK for the known issues and say that alpha-2 is 1-2 weeks away  
rather
than drop alpha-1 and wait that time for alpha-2. These are alpha  
versions,
as long as we are thorough with our known issues, I would expect users  
will

forgive us WDYT?

On 25 February 2017 at 16:50, Michael Osipov  wrote:


Am 2017-02-25 um 17:07 schrieb Robert Scholte:


Hi,

found a non-critical issue. It seems like with every Maven build, a new
lib/ext/jansi-64-1-xxx.13 is generated.
If this is a temp-file, I'd rather write it to the OS temp folder
instead of the Maven distribution.



This is horribly ugly by Jansi and Hawt JNI.
This has been introduced in b80915b8822b51aafa962a9ef53a61c0ac59033d.
Before reset, I had a separate ticket for that and performed a single
commit. After reset Hervé and me agreed to merge this into MNG-3507. The
issue is MNG-6115. See also the reasoning. It was intented to avoid the
constant extraction from JAR to {java.io.tmpdir}.

I expected library.jansi.path to be read-only. Alternatively, we should
expand all native libraries to {maven.home}/lib/ext/jansi and see if  
this

works. {maven.home} must be remain read-only.

Michael


On Thu, 23 Feb 2017 17:10:18 +0100, Stephen Connolly

 wrote:

Hi,


We solved 65 issues:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?proje
ctId=12316922=12339664=Text


There are still a couple of issues left in JIRA for 3.5.0, but I do  
not

think any of those are blocking an alpha release:
https://issues.apache.org/jira/issues/?jql=project%20%3D%
20MNG%20AND%20resolution%20%3D%20Unresolved%20AND%20fixVer
sion%20in%20(3.5.0%2C%203.5.0-candidate)%20ORDER%20BY%20due%
20ASC%2C%20priority%20DESC%2C%20created%20ASC


In addition there are 315 issues left in JIRA for Maven core:
https://issues.apache.org/jira/issues/?jql=project%20%3D%
20MNG%20AND%20resolution%20%3D%20Unresolved%20ORDER%20BY%
20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC


Staging repo:
https://repository.apache.org/content/repositories/maven-1324

The distributable binaries and sources for testing can be found here:
https://repository.apache.org/content/repositories/maven-132
4/org/apache/maven/apache-maven/3.5.0-alpha-1/


Specifically the zip, tarball, and source archives can be found here:
https://repository.apache.org/content/repositories/maven-132
4/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-
3.5.0-alpha-1-bin.zip

https://repository.apache.org/content/repositories/maven-132
4/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-
3.5.0-alpha-1-bin.tar.gz

https://repository.apache.org/content/repositories/maven-132
4/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-
3.5.0-alpha-1-src.zip

https://repository.apache.org/content/repositories/maven-132
4/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-
3.5.0-alpha-1-src.tar.gz


Source release checksum(s):
apache-maven-3.5.0-alpha-1-src.tar.gz sha1:
6055696aece5b0bfdd0308dae60838b37e218aba
apache-maven-3.5.0-alpha-1-src.zip sha1:
7d6adcdf8929205bf20399c71c6a2bdb9ee4f6dd

Git tag:
https://git-wip-us.apache.org/repos/asf?p=maven.git;a=commit
;h=8e6bbc4d4aa7cdc837625a05358c98ca15f72698


Staging site:
https://people.apache.org/~stephenc/maven-3.5.0-alpha-1/

Vote open for 72 hours.

[ ] +1
[ ] +0
[ ] -1


Thanks,
-Stephen



-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org






-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-25 Thread Karl Heinz Marbaise

Hi,

the last two days I'm running the 3.5.0-alpha-1 here on my mac with 
system installation and doing my work under usual user...not any problem 
so far...


I have taken a look into the lib/ext folder where I can't find a file 
similar to that which could only be there if the process has system 
access permission which is not the case...so I don't see it as critical...



Apart from that we should take a more deeper look into it:

Furthermore I've checked if I run Maven 3.5.0 (current master) under 
user space so I can acknowledge the things Robert has written...it looks 
like a temp file which generated from native code (taken a look into 
it...). It could be dumped via nm...


$ nm 
~/tools/maven-test/apache-maven-3.5.0-SNAPSHOT/lib/ext/libjansi-64-1-7745124109922235605.13

2058 S _IS_JNI_1_2
0e30 T _JNI_OnLoad
2060 S _JVM
15b0 T 
_Java_org_fusesource_jansi_internal_CLibrary_00024Termios_init
1600 T 
_Java_org_fusesource_jansi_internal_CLibrary_00024WinSize_init

0e90 T _Java_org_fusesource_jansi_internal_CLibrary_init
1150 T 
_Java_org_fusesource_jansi_internal_CLibrary_ioctl__IJLorg_fusesource_jansi_internal_CLibrary_00024WinSize_2

11e0 T _Java_org_fusesource_jansi_internal_CLibrary_ioctl__IJ_3I
1280 T _Java_org_fusesource_jansi_internal_CLibrary_isatty
1290 T _Java_org_fusesource_jansi_internal_CLibrary_openpty
14b0 T _Java_org_fusesource_jansi_internal_CLibrary_tcgetattr
1520 T _Java_org_fusesource_jansi_internal_CLibrary_tcsetattr
1590 T _Java_org_fusesource_jansi_internal_CLibrary_ttyname
15a0 T _Java_org_fusesource_jansi_internal_CLibrary_ttyslot
1660 T 
_Java_org_fusesource_jansi_internal_Kernel32_00024CHAR_1INFO_init
1670 T 
_Java_org_fusesource_jansi_internal_Kernel32_00024CONSOLE_1SCREEN_1BUFFER_1INFO_init
1680 T 
_Java_org_fusesource_jansi_internal_Kernel32_00024COORD_init
1690 T 
_Java_org_fusesource_jansi_internal_Kernel32_00024INPUT_1RECORD_init
16a0 T 
_Java_org_fusesource_jansi_internal_Kernel32_00024KEY_1EVENT_1RECORD_init
16b0 T 
_Java_org_fusesource_jansi_internal_Kernel32_00024SMALL_1RECT_init

1650 T _Java_org_fusesource_jansi_internal_Kernel32_init
2068 S _TermiosFc
20b0 S _WinSizeFc
 U ___stack_chk_fail
 U ___stack_chk_guard
16c0 T _cacheTermiosFields
1a10 T _cacheWinSizeFields
1800 T _getTermiosFields
1ae0 T _getWinSizeFields
0dd0 T _hawtjni_attach_thread
0e10 T _hawtjni_detach_thread
 U _ioctl
 U _isatty
 U _openpty
1910 T _setTermiosFields
1c30 T _setWinSizeFields
 U _tcgetattr
 U _tcsetattr
0e50 T _throwOutOfMemory
 U _ttyname
 U _ttyslot
 U dyld_stub_binder



Kind regards
Karl Heinz Marbaise



On 25/02/17 18:01, Benson Margulies wrote:

Is it still non-critical if the user lacks write access to that directory?

On Sat, Feb 25, 2017 at 8:07 AM, Robert Scholte  wrote:

Hi,

found a non-critical issue. It seems like with every Maven build, a new
lib/ext/jansi-64-1-xxx.13 is generated.
If this is a temp-file, I'd rather write it to the OS temp folder instead of
the Maven distribution.

Robert

On Thu, 23 Feb 2017 17:10:18 +0100, Stephen Connolly
 wrote:


Hi,

We solved 65 issues:

https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922=12339664=Text

There are still a couple of issues left in JIRA for 3.5.0, but I do not
think any of those are blocking an alpha release:

https://issues.apache.org/jira/issues/?jql=project%20%3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20AND%20fixVersion%20in%20(3.5.0%2C%203.5.0-candidate)%20ORDER%20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC

In addition there are 315 issues left in JIRA for Maven core:

https://issues.apache.org/jira/issues/?jql=project%20%3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20ORDER%20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC

Staging repo:
https://repository.apache.org/content/repositories/maven-1324

The distributable binaries and sources for testing can be found here:

https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/

Specifically the zip, tarball, and source archives can be found here:

https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-bin.zip

https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-bin.tar.gz


Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-25 Thread Stephen Connolly
We need to start thinking whether any of the issues so far are enough to
drop alpha-1 and run with alpha-2

IMHO we would gain more information from users if we release alpha-1 with
and ACK for the known issues and say that alpha-2 is 1-2 weeks away rather
than drop alpha-1 and wait that time for alpha-2. These are alpha versions,
as long as we are thorough with our known issues, I would expect users will
forgive us WDYT?

On 25 February 2017 at 16:50, Michael Osipov  wrote:

> Am 2017-02-25 um 17:07 schrieb Robert Scholte:
>
>> Hi,
>>
>> found a non-critical issue. It seems like with every Maven build, a new
>> lib/ext/jansi-64-1-xxx.13 is generated.
>> If this is a temp-file, I'd rather write it to the OS temp folder
>> instead of the Maven distribution.
>>
>
> This is horribly ugly by Jansi and Hawt JNI.
> This has been introduced in b80915b8822b51aafa962a9ef53a61c0ac59033d.
> Before reset, I had a separate ticket for that and performed a single
> commit. After reset Hervé and me agreed to merge this into MNG-3507. The
> issue is MNG-6115. See also the reasoning. It was intented to avoid the
> constant extraction from JAR to {java.io.tmpdir}.
>
> I expected library.jansi.path to be read-only. Alternatively, we should
> expand all native libraries to {maven.home}/lib/ext/jansi and see if this
> works. {maven.home} must be remain read-only.
>
> Michael
>
>
> On Thu, 23 Feb 2017 17:10:18 +0100, Stephen Connolly
>>  wrote:
>>
>> Hi,
>>>
>>> We solved 65 issues:
>>> https://issues.apache.org/jira/secure/ReleaseNote.jspa?proje
>>> ctId=12316922=12339664=Text
>>>
>>>
>>> There are still a couple of issues left in JIRA for 3.5.0, but I do not
>>> think any of those are blocking an alpha release:
>>> https://issues.apache.org/jira/issues/?jql=project%20%3D%
>>> 20MNG%20AND%20resolution%20%3D%20Unresolved%20AND%20fixVer
>>> sion%20in%20(3.5.0%2C%203.5.0-candidate)%20ORDER%20BY%20due%
>>> 20ASC%2C%20priority%20DESC%2C%20created%20ASC
>>>
>>>
>>> In addition there are 315 issues left in JIRA for Maven core:
>>> https://issues.apache.org/jira/issues/?jql=project%20%3D%
>>> 20MNG%20AND%20resolution%20%3D%20Unresolved%20ORDER%20BY%
>>> 20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC
>>>
>>>
>>> Staging repo:
>>> https://repository.apache.org/content/repositories/maven-1324
>>>
>>> The distributable binaries and sources for testing can be found here:
>>> https://repository.apache.org/content/repositories/maven-132
>>> 4/org/apache/maven/apache-maven/3.5.0-alpha-1/
>>>
>>>
>>> Specifically the zip, tarball, and source archives can be found here:
>>> https://repository.apache.org/content/repositories/maven-132
>>> 4/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-
>>> 3.5.0-alpha-1-bin.zip
>>>
>>> https://repository.apache.org/content/repositories/maven-132
>>> 4/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-
>>> 3.5.0-alpha-1-bin.tar.gz
>>>
>>> https://repository.apache.org/content/repositories/maven-132
>>> 4/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-
>>> 3.5.0-alpha-1-src.zip
>>>
>>> https://repository.apache.org/content/repositories/maven-132
>>> 4/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-
>>> 3.5.0-alpha-1-src.tar.gz
>>>
>>>
>>> Source release checksum(s):
>>> apache-maven-3.5.0-alpha-1-src.tar.gz sha1:
>>> 6055696aece5b0bfdd0308dae60838b37e218aba
>>> apache-maven-3.5.0-alpha-1-src.zip sha1:
>>> 7d6adcdf8929205bf20399c71c6a2bdb9ee4f6dd
>>>
>>> Git tag:
>>> https://git-wip-us.apache.org/repos/asf?p=maven.git;a=commit
>>> ;h=8e6bbc4d4aa7cdc837625a05358c98ca15f72698
>>>
>>>
>>> Staging site:
>>> https://people.apache.org/~stephenc/maven-3.5.0-alpha-1/
>>>
>>> Vote open for 72 hours.
>>>
>>> [ ] +1
>>> [ ] +0
>>> [ ] -1
>>>
>>>
>>> Thanks,
>>> -Stephen
>>>
>>
>> -
>> To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
>> For additional commands, e-mail: dev-h...@maven.apache.org
>>
>>
>>
>
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
> For additional commands, e-mail: dev-h...@maven.apache.org
>
>


Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-25 Thread Benson Margulies
Is it still non-critical if the user lacks write access to that directory?

On Sat, Feb 25, 2017 at 8:07 AM, Robert Scholte  wrote:
> Hi,
>
> found a non-critical issue. It seems like with every Maven build, a new
> lib/ext/jansi-64-1-xxx.13 is generated.
> If this is a temp-file, I'd rather write it to the OS temp folder instead of
> the Maven distribution.
>
> Robert
>
> On Thu, 23 Feb 2017 17:10:18 +0100, Stephen Connolly
>  wrote:
>
>> Hi,
>>
>> We solved 65 issues:
>>
>> https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922=12339664=Text
>>
>> There are still a couple of issues left in JIRA for 3.5.0, but I do not
>> think any of those are blocking an alpha release:
>>
>> https://issues.apache.org/jira/issues/?jql=project%20%3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20AND%20fixVersion%20in%20(3.5.0%2C%203.5.0-candidate)%20ORDER%20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC
>>
>> In addition there are 315 issues left in JIRA for Maven core:
>>
>> https://issues.apache.org/jira/issues/?jql=project%20%3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20ORDER%20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC
>>
>> Staging repo:
>> https://repository.apache.org/content/repositories/maven-1324
>>
>> The distributable binaries and sources for testing can be found here:
>>
>> https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/
>>
>> Specifically the zip, tarball, and source archives can be found here:
>>
>> https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-bin.zip
>>
>> https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-bin.tar.gz
>>
>> https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-src.zip
>>
>> https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-src.tar.gz
>>
>> Source release checksum(s):
>> apache-maven-3.5.0-alpha-1-src.tar.gz sha1:
>> 6055696aece5b0bfdd0308dae60838b37e218aba
>> apache-maven-3.5.0-alpha-1-src.zip sha1:
>> 7d6adcdf8929205bf20399c71c6a2bdb9ee4f6dd
>>
>> Git tag:
>>
>> https://git-wip-us.apache.org/repos/asf?p=maven.git;a=commit;h=8e6bbc4d4aa7cdc837625a05358c98ca15f72698
>>
>> Staging site:
>> https://people.apache.org/~stephenc/maven-3.5.0-alpha-1/
>>
>> Vote open for 72 hours.
>>
>> [ ] +1
>> [ ] +0
>> [ ] -1
>>
>>
>> Thanks,
>> -Stephen
>
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
> For additional commands, e-mail: dev-h...@maven.apache.org
>

-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-25 Thread Michael Osipov

Am 2017-02-25 um 17:07 schrieb Robert Scholte:

Hi,

found a non-critical issue. It seems like with every Maven build, a new
lib/ext/jansi-64-1-xxx.13 is generated.
If this is a temp-file, I'd rather write it to the OS temp folder
instead of the Maven distribution.


This is horribly ugly by Jansi and Hawt JNI.
This has been introduced in b80915b8822b51aafa962a9ef53a61c0ac59033d.
Before reset, I had a separate ticket for that and performed a single 
commit. After reset Hervé and me agreed to merge this into MNG-3507. The 
issue is MNG-6115. See also the reasoning. It was intented to avoid the 
constant extraction from JAR to {java.io.tmpdir}.


I expected library.jansi.path to be read-only. Alternatively, we should 
expand all native libraries to {maven.home}/lib/ext/jansi and see if 
this works. {maven.home} must be remain read-only.


Michael


On Thu, 23 Feb 2017 17:10:18 +0100, Stephen Connolly
 wrote:


Hi,

We solved 65 issues:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922=12339664=Text


There are still a couple of issues left in JIRA for 3.5.0, but I do not
think any of those are blocking an alpha release:
https://issues.apache.org/jira/issues/?jql=project%20%3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20AND%20fixVersion%20in%20(3.5.0%2C%203.5.0-candidate)%20ORDER%20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC


In addition there are 315 issues left in JIRA for Maven core:
https://issues.apache.org/jira/issues/?jql=project%20%3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20ORDER%20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC


Staging repo:
https://repository.apache.org/content/repositories/maven-1324

The distributable binaries and sources for testing can be found here:
https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/


Specifically the zip, tarball, and source archives can be found here:
https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-bin.zip

https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-bin.tar.gz

https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-src.zip

https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-src.tar.gz


Source release checksum(s):
apache-maven-3.5.0-alpha-1-src.tar.gz sha1:
6055696aece5b0bfdd0308dae60838b37e218aba
apache-maven-3.5.0-alpha-1-src.zip sha1:
7d6adcdf8929205bf20399c71c6a2bdb9ee4f6dd

Git tag:
https://git-wip-us.apache.org/repos/asf?p=maven.git;a=commit;h=8e6bbc4d4aa7cdc837625a05358c98ca15f72698


Staging site:
https://people.apache.org/~stephenc/maven-3.5.0-alpha-1/

Vote open for 72 hours.

[ ] +1
[ ] +0
[ ] -1


Thanks,
-Stephen


-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org






-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-25 Thread Tibor Digana
The SNAPSHOT is therefore getting quite big 70 MB.

On Sat, Feb 25, 2017 at 5:07 PM, Robert Scholte 
wrote:

> Hi,
>
> found a non-critical issue. It seems like with every Maven build, a new
> lib/ext/jansi-64-1-xxx.13 is generated.
> If this is a temp-file, I'd rather write it to the OS temp folder instead
> of the Maven distribution.
>
> Robert
>
>
> On Thu, 23 Feb 2017 17:10:18 +0100, Stephen Connolly <
> stephen.alan.conno...@gmail.com> wrote:
>
> Hi,
>>
>> We solved 65 issues:
>> https://issues.apache.org/jira/secure/ReleaseNote.jspa?proje
>> ctId=12316922=12339664=Text
>>
>> There are still a couple of issues left in JIRA for 3.5.0, but I do not
>> think any of those are blocking an alpha release:
>> https://issues.apache.org/jira/issues/?jql=project%20%3D%
>> 20MNG%20AND%20resolution%20%3D%20Unresolved%20AND%20fixVer
>> sion%20in%20(3.5.0%2C%203.5.0-candidate)%20ORDER%20BY%20due%
>> 20ASC%2C%20priority%20DESC%2C%20created%20ASC
>>
>> In addition there are 315 issues left in JIRA for Maven core:
>> https://issues.apache.org/jira/issues/?jql=project%20%3D%
>> 20MNG%20AND%20resolution%20%3D%20Unresolved%20ORDER%20BY%
>> 20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC
>>
>> Staging repo:
>> https://repository.apache.org/content/repositories/maven-1324
>>
>> The distributable binaries and sources for testing can be found here:
>> https://repository.apache.org/content/repositories/maven-132
>> 4/org/apache/maven/apache-maven/3.5.0-alpha-1/
>>
>> Specifically the zip, tarball, and source archives can be found here:
>> https://repository.apache.org/content/repositories/maven-132
>> 4/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-
>> 3.5.0-alpha-1-bin.zip
>> https://repository.apache.org/content/repositories/maven-132
>> 4/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-
>> 3.5.0-alpha-1-bin.tar.gz
>> https://repository.apache.org/content/repositories/maven-132
>> 4/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-
>> 3.5.0-alpha-1-src.zip
>> https://repository.apache.org/content/repositories/maven-132
>> 4/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-
>> 3.5.0-alpha-1-src.tar.gz
>>
>> Source release checksum(s):
>> apache-maven-3.5.0-alpha-1-src.tar.gz sha1:
>> 6055696aece5b0bfdd0308dae60838b37e218aba
>> apache-maven-3.5.0-alpha-1-src.zip sha1:
>> 7d6adcdf8929205bf20399c71c6a2bdb9ee4f6dd
>>
>> Git tag:
>> https://git-wip-us.apache.org/repos/asf?p=maven.git;a=commit
>> ;h=8e6bbc4d4aa7cdc837625a05358c98ca15f72698
>>
>> Staging site:
>> https://people.apache.org/~stephenc/maven-3.5.0-alpha-1/
>>
>> Vote open for 72 hours.
>>
>> [ ] +1
>> [ ] +0
>> [ ] -1
>>
>>
>> Thanks,
>> -Stephen
>>
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
> For additional commands, e-mail: dev-h...@maven.apache.org
>
>


-- 
Cheers
Tibor


Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-25 Thread Tibor Digana
>>There are two commits for MNG-6078 part of -alpha-1.

This was caused by system property duplicates in surefire ITs.
It is already fixed in a branch SUREFIRE_SYSPROP_DUPLICATES.
System props duplicates: -DreuseForks=false -DreuseForks=true
I am sure the ITs now pass because of Stepen's commit with better
resolution of system properties.
More info in mailing list apart.



On Sat, Feb 25, 2017 at 4:34 PM, Christian Schulte [via Maven] <
ml-node+s40175n5900050...@n5.nabble.com> wrote:

> Am 02/25/17 um 14:40 schrieb Tibor Digana:
>
> > @Stephen
> > @Michael-O
> > What changed in Maven after Michael used his snapshot version of
> > Maven-3.5.0-SNAPSHOT?
> > Michael said that surefire failed with ForkModeIT and he tested
> Surefire's
> > commits from HEAD to 502d18442113b4c6c72630dca5842e1eb287b8b0.
> > I followed more deeply in the commits of Surefire project but my
> snapshot
> > version of Maven-3.5.0-SNAPSHOT still failed till January 16th, 2015.
> > Then I decided to use this Maven release of Alpha-1 and ForkModeIT
> passed.
> >
>
> There are two commits for MNG-6078 part of -alpha-1.
>
> Regards,
> --
> Christian
>
>
> -
> To unsubscribe, e-mail: [hidden email]
> 
> For additional commands, e-mail: [hidden email]
> 
>
>
>
> --
> If you reply to this email, your message will be added to the discussion
> below:
> http://maven.40175.n5.nabble.com/VOTE-Release-Apache-Maven-3-5-0-alpha-1-
> tp5899775p5900050.html
> To start a new topic under Maven Developers, email
> ml-node+s40175n142166...@n5.nabble.com
> To unsubscribe from Maven Developers, click here
> 
> .
> NAML
> 
>




--
View this message in context: 
http://maven.40175.n5.nabble.com/VOTE-Release-Apache-Maven-3-5-0-alpha-1-tp5899775p5900059.html
Sent from the Maven Developers mailing list archive at Nabble.com.

Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-25 Thread Robert Scholte

Hi,

found a non-critical issue. It seems like with every Maven build, a new  
lib/ext/jansi-64-1-xxx.13 is generated.
If this is a temp-file, I'd rather write it to the OS temp folder instead  
of the Maven distribution.


Robert

On Thu, 23 Feb 2017 17:10:18 +0100, Stephen Connolly  
 wrote:



Hi,

We solved 65 issues:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922=12339664=Text

There are still a couple of issues left in JIRA for 3.5.0, but I do not
think any of those are blocking an alpha release:
https://issues.apache.org/jira/issues/?jql=project%20%3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20AND%20fixVersion%20in%20(3.5.0%2C%203.5.0-candidate)%20ORDER%20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC

In addition there are 315 issues left in JIRA for Maven core:
https://issues.apache.org/jira/issues/?jql=project%20%3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20ORDER%20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC

Staging repo:
https://repository.apache.org/content/repositories/maven-1324

The distributable binaries and sources for testing can be found here:
https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/

Specifically the zip, tarball, and source archives can be found here:
https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-bin.zip
https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-bin.tar.gz
https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-src.zip
https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-src.tar.gz

Source release checksum(s):
apache-maven-3.5.0-alpha-1-src.tar.gz sha1:
6055696aece5b0bfdd0308dae60838b37e218aba
apache-maven-3.5.0-alpha-1-src.zip sha1:
7d6adcdf8929205bf20399c71c6a2bdb9ee4f6dd

Git tag:
https://git-wip-us.apache.org/repos/asf?p=maven.git;a=commit;h=8e6bbc4d4aa7cdc837625a05358c98ca15f72698

Staging site:
https://people.apache.org/~stephenc/maven-3.5.0-alpha-1/

Vote open for 72 hours.

[ ] +1
[ ] +0
[ ] -1


Thanks,
-Stephen


-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-25 Thread Christian Schulte
Am 02/25/17 um 14:40 schrieb Tibor Digana:
> @Stephen
> @Michael-O
> What changed in Maven after Michael used his snapshot version of
> Maven-3.5.0-SNAPSHOT?
> Michael said that surefire failed with ForkModeIT and he tested Surefire's
> commits from HEAD to 502d18442113b4c6c72630dca5842e1eb287b8b0.
> I followed more deeply in the commits of Surefire project but my snapshot
> version of Maven-3.5.0-SNAPSHOT still failed till January 16th, 2015.
> Then I decided to use this Maven release of Alpha-1 and ForkModeIT passed.
> 

There are two commits for MNG-6078 part of -alpha-1.

Regards,
-- 
Christian


-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-25 Thread Tibor Digana
@Stephen
@Michael-O
What changed in Maven after Michael used his snapshot version of
Maven-3.5.0-SNAPSHOT?
Michael said that surefire failed with ForkModeIT and he tested Surefire's
commits from HEAD to 502d18442113b4c6c72630dca5842e1eb287b8b0.
I followed more deeply in the commits of Surefire project but my snapshot
version of Maven-3.5.0-SNAPSHOT still failed till January 16th, 2015.
Then I decided to use this Maven release of Alpha-1 and ForkModeIT passed.




On Sat, Feb 25, 2017 at 12:44 PM, stephenconnolly [via Maven] <
ml-node+s40175n5900039...@n5.nabble.com> wrote:

> We should also tip our hat to what happened to 3.4.x
>
> On Sat 25 Feb 2017 at 11:41, Stephen Connolly <
> [hidden email] >
> wrote:
>
> > I think we can do alpha release notes. It maybe on a sub page
> >
> > Thanks for picking this up (I was going to start it later today subject
> to
> > family approval ;-) )
> >
> > On Sat 25 Feb 2017 at 11:34, Karl Heinz Marbaise <[hidden email]
> >
> > wrote:
> >
> > Hi,
> >
> > I have started to summarize the changes we had in 3.5.0-alpha-1..
> >
> >
> > https://github.com/khmarbaise/maven-release-notes/blob/
> master/content/markdown/docs/3.5.0/release-notes.md
> >
> > If there are any supplementals/changes/fixes etc. Please make an issue
> > or a pull request to it...or write here...
> >
> > (Should we do a release notes for 3.5.0-alpha-1 alone or should we
> > summarize that for 3.5.0 ?)
> >
> > Kind regards
> > Karl Heinz Marbaise
> > On 23/02/17 17:10, Stephen Connolly wrote:
> > > Hi,
> > >
> > > We solved 65 issues:
> > >
> > https://issues.apache.org/jira/secure/ReleaseNote.jspa?
> projectId=12316922=12339664=Text
> > >
> > > There are still a couple of issues left in JIRA for 3.5.0, but I do
> not
> > > think any of those are blocking an alpha release:
> > >
> > https://issues.apache.org/jira/issues/?jql=project%20%
> 3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20AND%
> 20fixVersion%20in%20(3.5.0%2C%203.5.0-candidate)%20ORDER%
> 20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC
> > >
> > > In addition there are 315 issues left in JIRA for Maven core:
> > >
> > https://issues.apache.org/jira/issues/?jql=project%20%
> 3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20ORDER%
> 20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC
> > >
> > > Staging repo:
> > > https://repository.apache.org/content/repositories/maven-1324
> > >
> > > The distributable binaries and sources for testing can be found here:
> > >
> > https://repository.apache.org/content/repositories/maven-
> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/
> > >
> > > Specifically the zip, tarball, and source archives can be found here:
> > >
> > https://repository.apache.org/content/repositories/maven-
> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> maven-3.5.0-alpha-1-bin.zip
> > >
> > https://repository.apache.org/content/repositories/maven-
> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> maven-3.5.0-alpha-1-bin.tar.gz
> > >
> > https://repository.apache.org/content/repositories/maven-
> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> maven-3.5.0-alpha-1-src.zip
> > >
> > https://repository.apache.org/content/repositories/maven-
> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> maven-3.5.0-alpha-1-src.tar.gz
> > >
> > > Source release checksum(s):
> > > apache-maven-3.5.0-alpha-1-src.tar.gz sha1:
> > > 6055696aece5b0bfdd0308dae60838b37e218aba
> > > apache-maven-3.5.0-alpha-1-src.zip sha1:
> > > 7d6adcdf8929205bf20399c71c6a2bdb9ee4f6dd
> > >
> > > Git tag:
> > >
> > https://git-wip-us.apache.org/repos/asf?p=maven.git;a=commit;h=
> 8e6bbc4d4aa7cdc837625a05358c98ca15f72698
> > >
> > > Staging site:
> > > https://people.apache.org/~stephenc/maven-3.5.0-alpha-1/
> > >
> > > Vote open for 72 hours.
> > >
> > > [ ] +1
> > > [ ] +0
> > > [ ] -1
> > >
> > >
> > > Thanks,
> > > -Stephen
> > >
> >
> >
> > -
> > To unsubscribe, e-mail: [hidden email]
> 
> > For additional commands, e-mail: [hidden email]
> 
> >
> > --
> > Sent from my phone
> >
> --
> Sent from my phone
>
>
> --
> If you reply to this email, your message will be added to the discussion
> below:
> http://maven.40175.n5.nabble.com/VOTE-Release-Apache-Maven-3-5-0-alpha-1-
> tp5899775p5900039.html
> To start a new topic under Maven Developers, email
> ml-node+s40175n142166...@n5.nabble.com
> To unsubscribe from Maven Developers, click here
> 
> .
> NAML
> 

Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-25 Thread Stephen Connolly
We should also tip our hat to what happened to 3.4.x

On Sat 25 Feb 2017 at 11:41, Stephen Connolly <
stephen.alan.conno...@gmail.com> wrote:

> I think we can do alpha release notes. It maybe on a sub page
>
> Thanks for picking this up (I was going to start it later today subject to
> family approval ;-) )
>
> On Sat 25 Feb 2017 at 11:34, Karl Heinz Marbaise 
> wrote:
>
> Hi,
>
> I have started to summarize the changes we had in 3.5.0-alpha-1..
>
>
> https://github.com/khmarbaise/maven-release-notes/blob/master/content/markdown/docs/3.5.0/release-notes.md
>
> If there are any supplementals/changes/fixes etc. Please make an issue
> or a pull request to it...or write here...
>
> (Should we do a release notes for 3.5.0-alpha-1 alone or should we
> summarize that for 3.5.0 ?)
>
> Kind regards
> Karl Heinz Marbaise
> On 23/02/17 17:10, Stephen Connolly wrote:
> > Hi,
> >
> > We solved 65 issues:
> >
> https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922=12339664=Text
> >
> > There are still a couple of issues left in JIRA for 3.5.0, but I do not
> > think any of those are blocking an alpha release:
> >
> https://issues.apache.org/jira/issues/?jql=project%20%3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20AND%20fixVersion%20in%20(3.5.0%2C%203.5.0-candidate)%20ORDER%20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC
> >
> > In addition there are 315 issues left in JIRA for Maven core:
> >
> https://issues.apache.org/jira/issues/?jql=project%20%3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20ORDER%20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC
> >
> > Staging repo:
> > https://repository.apache.org/content/repositories/maven-1324
> >
> > The distributable binaries and sources for testing can be found here:
> >
> https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/
> >
> > Specifically the zip, tarball, and source archives can be found here:
> >
> https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-bin.zip
> >
> https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-bin.tar.gz
> >
> https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-src.zip
> >
> https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-src.tar.gz
> >
> > Source release checksum(s):
> > apache-maven-3.5.0-alpha-1-src.tar.gz sha1:
> > 6055696aece5b0bfdd0308dae60838b37e218aba
> > apache-maven-3.5.0-alpha-1-src.zip sha1:
> > 7d6adcdf8929205bf20399c71c6a2bdb9ee4f6dd
> >
> > Git tag:
> >
> https://git-wip-us.apache.org/repos/asf?p=maven.git;a=commit;h=8e6bbc4d4aa7cdc837625a05358c98ca15f72698
> >
> > Staging site:
> > https://people.apache.org/~stephenc/maven-3.5.0-alpha-1/
> >
> > Vote open for 72 hours.
> >
> > [ ] +1
> > [ ] +0
> > [ ] -1
> >
> >
> > Thanks,
> > -Stephen
> >
>
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
> For additional commands, e-mail: dev-h...@maven.apache.org
>
> --
> Sent from my phone
>
-- 
Sent from my phone


Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-25 Thread Stephen Connolly
I think we can do alpha release notes. It maybe on a sub page

Thanks for picking this up (I was going to start it later today subject to
family approval ;-) )
On Sat 25 Feb 2017 at 11:34, Karl Heinz Marbaise  wrote:

> Hi,
>
> I have started to summarize the changes we had in 3.5.0-alpha-1..
>
>
> https://github.com/khmarbaise/maven-release-notes/blob/master/content/markdown/docs/3.5.0/release-notes.md
>
> If there are any supplementals/changes/fixes etc. Please make an issue
> or a pull request to it...or write here...
>
> (Should we do a release notes for 3.5.0-alpha-1 alone or should we
> summarize that for 3.5.0 ?)
>
> Kind regards
> Karl Heinz Marbaise
> On 23/02/17 17:10, Stephen Connolly wrote:
> > Hi,
> >
> > We solved 65 issues:
> >
> https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922=12339664=Text
> >
> > There are still a couple of issues left in JIRA for 3.5.0, but I do not
> > think any of those are blocking an alpha release:
> >
> https://issues.apache.org/jira/issues/?jql=project%20%3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20AND%20fixVersion%20in%20(3.5.0%2C%203.5.0-candidate)%20ORDER%20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC
> >
> > In addition there are 315 issues left in JIRA for Maven core:
> >
> https://issues.apache.org/jira/issues/?jql=project%20%3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20ORDER%20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC
> >
> > Staging repo:
> > https://repository.apache.org/content/repositories/maven-1324
> >
> > The distributable binaries and sources for testing can be found here:
> >
> https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/
> >
> > Specifically the zip, tarball, and source archives can be found here:
> >
> https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-bin.zip
> >
> https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-bin.tar.gz
> >
> https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-src.zip
> >
> https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-src.tar.gz
> >
> > Source release checksum(s):
> > apache-maven-3.5.0-alpha-1-src.tar.gz sha1:
> > 6055696aece5b0bfdd0308dae60838b37e218aba
> > apache-maven-3.5.0-alpha-1-src.zip sha1:
> > 7d6adcdf8929205bf20399c71c6a2bdb9ee4f6dd
> >
> > Git tag:
> >
> https://git-wip-us.apache.org/repos/asf?p=maven.git;a=commit;h=8e6bbc4d4aa7cdc837625a05358c98ca15f72698
> >
> > Staging site:
> > https://people.apache.org/~stephenc/maven-3.5.0-alpha-1/
> >
> > Vote open for 72 hours.
> >
> > [ ] +1
> > [ ] +0
> > [ ] -1
> >
> >
> > Thanks,
> > -Stephen
> >
>
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
> For additional commands, e-mail: dev-h...@maven.apache.org
>
> --
Sent from my phone


Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-25 Thread Karl Heinz Marbaise

Hi,

I have started to summarize the changes we had in 3.5.0-alpha-1..

https://github.com/khmarbaise/maven-release-notes/blob/master/content/markdown/docs/3.5.0/release-notes.md

If there are any supplementals/changes/fixes etc. Please make an issue 
or a pull request to it...or write here...


(Should we do a release notes for 3.5.0-alpha-1 alone or should we 
summarize that for 3.5.0 ?)


Kind regards
Karl Heinz Marbaise
On 23/02/17 17:10, Stephen Connolly wrote:

Hi,

We solved 65 issues:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922=12339664=Text

There are still a couple of issues left in JIRA for 3.5.0, but I do not
think any of those are blocking an alpha release:
https://issues.apache.org/jira/issues/?jql=project%20%3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20AND%20fixVersion%20in%20(3.5.0%2C%203.5.0-candidate)%20ORDER%20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC

In addition there are 315 issues left in JIRA for Maven core:
https://issues.apache.org/jira/issues/?jql=project%20%3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20ORDER%20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC

Staging repo:
https://repository.apache.org/content/repositories/maven-1324

The distributable binaries and sources for testing can be found here:
https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/

Specifically the zip, tarball, and source archives can be found here:
https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-bin.zip
https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-bin.tar.gz
https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-src.zip
https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-src.tar.gz

Source release checksum(s):
apache-maven-3.5.0-alpha-1-src.tar.gz sha1:
6055696aece5b0bfdd0308dae60838b37e218aba
apache-maven-3.5.0-alpha-1-src.zip sha1:
7d6adcdf8929205bf20399c71c6a2bdb9ee4f6dd

Git tag:
https://git-wip-us.apache.org/repos/asf?p=maven.git;a=commit;h=8e6bbc4d4aa7cdc837625a05358c98ca15f72698

Staging site:
https://people.apache.org/~stephenc/maven-3.5.0-alpha-1/

Vote open for 72 hours.

[ ] +1
[ ] +0
[ ] -1


Thanks,
-Stephen




-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-24 Thread Christian Schulte
Am 02/24/17 um 21:03 schrieb Stephen Connolly:
> To reflect the practice we should use for these going forward

+1

I should have included -alpha-0 in those ranges right from the start.

Regards,
-- 
Christian


-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-24 Thread Stephen Connolly
To reflect the practice we should use for these going forward

On Fri 24 Feb 2017 at 19:54, Robert Scholte  wrote:

> ... ,3.5.0-alpha-0)
>
> sure, effect is the same, but why not ",3.5.0-alpha-1)" to reflect an
> existing version
>
> Robert
>
> On Fri, 24 Feb 2017 20:51:18 +0100, Stephen Connolly
>  wrote:
>
> > c4cd8cf3b5e4c6d0a7f52a3d282229bda29b5f58 in maven-integration-testing
> > should fix this issue
> >
> > On 24 February 2017 at 19:39, Stephen Connolly <
> > stephen.alan.conno...@gmail.com> wrote:
> >
> >> 3.5.0 > 3.5.0-alpha-1
> >>
> >> On 24 February 2017 at 19:38, Guillaume Boué  wrote:
> >>
> >>> I also ran the ITs on a Windows machine, hitting the same error in the
> >>> tests as mentioned by Robert. Additionally, I had the following errors:
> >>>
> >>> Failed tests:
> >>>
> MavenITmng2199ParentVersionRangeTest>AbstractMavenIntegrationTestCase.runTest:244
> >>> Expected failure when with Maven version 3.5.0-alpha-1
> >>>
> MavenITmng2199ParentVersionRangeTest>AbstractMavenIntegrationTestCase.runTest:244
> >>> Expected failure when with Maven version 3.5.0-alpha-1
> >>>
> MavenITmng2199ParentVersionRangeTest>AbstractMavenIntegrationTestCase.runTest:244
> >>> Expected failure when with Maven version 3.5.0-alpha-1
> >>>
> MavenITmng2199ParentVersionRangeTest>AbstractMavenIntegrationTestCase.runTest:244
> >>> Expected failure when with Maven version 3.5.0-alpha-1
> >>>
> MavenITmng2199ParentVersionRangeTest>AbstractMavenIntegrationTestCase.runTest:244
> >>> Expected failure when with Maven version 3.5.0-alpha-1
> >>>
> >>> The command used to ran the ITs was:
> >>>
> >>> mvn clean install -Prun-its -Dmaven.repo.local=`pwd`/repo
> >>>
> >>>
> >>> Le 24/02/2017 à 18:34, Robert Scholte a écrit :
> >>>
>  When running the maven-its, I get this failing test. I think the cause
>  is an invalid version range, right?
> 
>  Robert
> 
>  Tests in error:
>  MavenITmng5805PkgTypeMojoConfiguration>AbstractMavenIntegrat
>  ionTestCase.runTest:222->testPkgTypeMojoConfiguration:27 ╗
>  Verification
> 
> 
> 
>  On Thu, 23 Feb 2017 17:10:18 +0100, Stephen Connolly <
>  stephen.alan.conno...@gmail.com> wrote:
> 
>  Hi,
> >
> > We solved 65 issues:
> > https://issues.apache.org/jira/secure/ReleaseNote.jspa?proje
> > ctId=12316922=12339664=Text
> >
> > There are still a couple of issues left in JIRA for 3.5.0, but I do
> > not
> > think any of those are blocking an alpha release:
> > https://issues.apache.org/jira/issues/?jql=project%20%3D%20M
> > NG%20AND%20resolution%20%3D%20Unresolved%20AND%20fixVersio
> > n%20in%20(3.5.0%2C%203.5.0-candidate)%20ORDER%20BY%20due%20A
> > SC%2C%20priority%20DESC%2C%20created%20ASC
> >
> > In addition there are 315 issues left in JIRA for Maven core:
> > https://issues.apache.org/jira/issues/?jql=project%20%3D%20M
> > NG%20AND%20resolution%20%3D%20Unresolved%20ORDER%20BY%20du
> > e%20ASC%2C%20priority%20DESC%2C%20created%20ASC
> >
> > Staging repo:
> > https://repository.apache.org/content/repositories/maven-1324
> >
> > The distributable binaries and sources for testing can be found here:
> > https://repository.apache.org/content/repositories/maven-132
> > 4/org/apache/maven/apache-maven/3.5.0-alpha-1/
> >
> > Specifically the zip, tarball, and source archives can be found here:
> > https://repository.apache.org/content/repositories/maven-132
> > 4/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3
> > .5.0-alpha-1-bin.zip
> > https://repository.apache.org/content/repositories/maven-132
> > 4/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3
> > .5.0-alpha-1-bin.tar.gz
> > https://repository.apache.org/content/repositories/maven-132
> > 4/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3
> > .5.0-alpha-1-src.zip
> > https://repository.apache.org/content/repositories/maven-132
> > 4/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3
> > .5.0-alpha-1-src.tar.gz
> >
> > Source release checksum(s):
> > apache-maven-3.5.0-alpha-1-src.tar.gz sha1:
> > 6055696aece5b0bfdd0308dae60838b37e218aba
> > apache-maven-3.5.0-alpha-1-src.zip sha1:
> > 7d6adcdf8929205bf20399c71c6a2bdb9ee4f6dd
> >
> > Git tag:
> > https://git-wip-us.apache.org/repos/asf?p=maven.git;a=commit
> > ;h=8e6bbc4d4aa7cdc837625a05358c98ca15f72698
> >
> > Staging site:
> > https://people.apache.org/~stephenc/maven-3.5.0-alpha-1/
> >
> > Vote open for 72 hours.
> >
> > [ ] +1
> > [ ] +0
> > [ ] -1
> >
> >
> > Thanks,
> > -Stephen
> >
> 
>  -
>  To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
>  For additional commands, e-mail: 

Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-24 Thread Robert Scholte

... ,3.5.0-alpha-0)

sure, effect is the same, but why not ",3.5.0-alpha-1)" to reflect an  
existing version


Robert

On Fri, 24 Feb 2017 20:51:18 +0100, Stephen Connolly  
 wrote:



c4cd8cf3b5e4c6d0a7f52a3d282229bda29b5f58 in maven-integration-testing
should fix this issue

On 24 February 2017 at 19:39, Stephen Connolly <
stephen.alan.conno...@gmail.com> wrote:


3.5.0 > 3.5.0-alpha-1

On 24 February 2017 at 19:38, Guillaume Boué  wrote:


I also ran the ITs on a Windows machine, hitting the same error in the
tests as mentioned by Robert. Additionally, I had the following errors:

Failed tests:
MavenITmng2199ParentVersionRangeTest>AbstractMavenIntegrationTestCase.runTest:244
Expected failure when with Maven version 3.5.0-alpha-1
MavenITmng2199ParentVersionRangeTest>AbstractMavenIntegrationTestCase.runTest:244
Expected failure when with Maven version 3.5.0-alpha-1
MavenITmng2199ParentVersionRangeTest>AbstractMavenIntegrationTestCase.runTest:244
Expected failure when with Maven version 3.5.0-alpha-1
MavenITmng2199ParentVersionRangeTest>AbstractMavenIntegrationTestCase.runTest:244
Expected failure when with Maven version 3.5.0-alpha-1
MavenITmng2199ParentVersionRangeTest>AbstractMavenIntegrationTestCase.runTest:244
Expected failure when with Maven version 3.5.0-alpha-1

The command used to ran the ITs was:

mvn clean install -Prun-its -Dmaven.repo.local=`pwd`/repo


Le 24/02/2017 à 18:34, Robert Scholte a écrit :


When running the maven-its, I get this failing test. I think the cause
is an invalid version range, right?

Robert

Tests in error:
MavenITmng5805PkgTypeMojoConfiguration>AbstractMavenIntegrat
ionTestCase.runTest:222->testPkgTypeMojoConfiguration:27 ╗  
Verification




On Thu, 23 Feb 2017 17:10:18 +0100, Stephen Connolly <
stephen.alan.conno...@gmail.com> wrote:

Hi,


We solved 65 issues:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?proje
ctId=12316922=12339664=Text

There are still a couple of issues left in JIRA for 3.5.0, but I do  
not

think any of those are blocking an alpha release:
https://issues.apache.org/jira/issues/?jql=project%20%3D%20M
NG%20AND%20resolution%20%3D%20Unresolved%20AND%20fixVersio
n%20in%20(3.5.0%2C%203.5.0-candidate)%20ORDER%20BY%20due%20A
SC%2C%20priority%20DESC%2C%20created%20ASC

In addition there are 315 issues left in JIRA for Maven core:
https://issues.apache.org/jira/issues/?jql=project%20%3D%20M
NG%20AND%20resolution%20%3D%20Unresolved%20ORDER%20BY%20du
e%20ASC%2C%20priority%20DESC%2C%20created%20ASC

Staging repo:
https://repository.apache.org/content/repositories/maven-1324

The distributable binaries and sources for testing can be found here:
https://repository.apache.org/content/repositories/maven-132
4/org/apache/maven/apache-maven/3.5.0-alpha-1/

Specifically the zip, tarball, and source archives can be found here:
https://repository.apache.org/content/repositories/maven-132
4/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3
.5.0-alpha-1-bin.zip
https://repository.apache.org/content/repositories/maven-132
4/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3
.5.0-alpha-1-bin.tar.gz
https://repository.apache.org/content/repositories/maven-132
4/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3
.5.0-alpha-1-src.zip
https://repository.apache.org/content/repositories/maven-132
4/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3
.5.0-alpha-1-src.tar.gz

Source release checksum(s):
apache-maven-3.5.0-alpha-1-src.tar.gz sha1:
6055696aece5b0bfdd0308dae60838b37e218aba
apache-maven-3.5.0-alpha-1-src.zip sha1:
7d6adcdf8929205bf20399c71c6a2bdb9ee4f6dd

Git tag:
https://git-wip-us.apache.org/repos/asf?p=maven.git;a=commit
;h=8e6bbc4d4aa7cdc837625a05358c98ca15f72698

Staging site:
https://people.apache.org/~stephenc/maven-3.5.0-alpha-1/

Vote open for 72 hours.

[ ] +1
[ ] +0
[ ] -1


Thanks,
-Stephen



-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org




---
L'absence de virus dans ce courrier électronique a été vérifiée par le
logiciel antivirus Avast.
https://www.avast.com/antivirus



-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org




-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-24 Thread Stephen Connolly
c4cd8cf3b5e4c6d0a7f52a3d282229bda29b5f58 in maven-integration-testing
should fix this issue

On 24 February 2017 at 19:39, Stephen Connolly <
stephen.alan.conno...@gmail.com> wrote:

> 3.5.0 > 3.5.0-alpha-1
>
> On 24 February 2017 at 19:38, Guillaume Boué  wrote:
>
>> I also ran the ITs on a Windows machine, hitting the same error in the
>> tests as mentioned by Robert. Additionally, I had the following errors:
>>
>> Failed tests:
>> MavenITmng2199ParentVersionRangeTest>AbstractMavenIntegrationTestCase.runTest:244
>> Expected failure when with Maven version 3.5.0-alpha-1
>> MavenITmng2199ParentVersionRangeTest>AbstractMavenIntegrationTestCase.runTest:244
>> Expected failure when with Maven version 3.5.0-alpha-1
>> MavenITmng2199ParentVersionRangeTest>AbstractMavenIntegrationTestCase.runTest:244
>> Expected failure when with Maven version 3.5.0-alpha-1
>> MavenITmng2199ParentVersionRangeTest>AbstractMavenIntegrationTestCase.runTest:244
>> Expected failure when with Maven version 3.5.0-alpha-1
>> MavenITmng2199ParentVersionRangeTest>AbstractMavenIntegrationTestCase.runTest:244
>> Expected failure when with Maven version 3.5.0-alpha-1
>>
>> The command used to ran the ITs was:
>>
>> mvn clean install -Prun-its -Dmaven.repo.local=`pwd`/repo
>>
>>
>> Le 24/02/2017 à 18:34, Robert Scholte a écrit :
>>
>>> When running the maven-its, I get this failing test. I think the cause
>>> is an invalid version range, right?
>>>
>>> Robert
>>>
>>> Tests in error:
>>> MavenITmng5805PkgTypeMojoConfiguration>AbstractMavenIntegrat
>>> ionTestCase.runTest:222->testPkgTypeMojoConfiguration:27 ╗ Verification
>>>
>>>
>>>
>>> On Thu, 23 Feb 2017 17:10:18 +0100, Stephen Connolly <
>>> stephen.alan.conno...@gmail.com> wrote:
>>>
>>> Hi,

 We solved 65 issues:
 https://issues.apache.org/jira/secure/ReleaseNote.jspa?proje
 ctId=12316922=12339664=Text

 There are still a couple of issues left in JIRA for 3.5.0, but I do not
 think any of those are blocking an alpha release:
 https://issues.apache.org/jira/issues/?jql=project%20%3D%20M
 NG%20AND%20resolution%20%3D%20Unresolved%20AND%20fixVersio
 n%20in%20(3.5.0%2C%203.5.0-candidate)%20ORDER%20BY%20due%20A
 SC%2C%20priority%20DESC%2C%20created%20ASC

 In addition there are 315 issues left in JIRA for Maven core:
 https://issues.apache.org/jira/issues/?jql=project%20%3D%20M
 NG%20AND%20resolution%20%3D%20Unresolved%20ORDER%20BY%20du
 e%20ASC%2C%20priority%20DESC%2C%20created%20ASC

 Staging repo:
 https://repository.apache.org/content/repositories/maven-1324

 The distributable binaries and sources for testing can be found here:
 https://repository.apache.org/content/repositories/maven-132
 4/org/apache/maven/apache-maven/3.5.0-alpha-1/

 Specifically the zip, tarball, and source archives can be found here:
 https://repository.apache.org/content/repositories/maven-132
 4/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3
 .5.0-alpha-1-bin.zip
 https://repository.apache.org/content/repositories/maven-132
 4/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3
 .5.0-alpha-1-bin.tar.gz
 https://repository.apache.org/content/repositories/maven-132
 4/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3
 .5.0-alpha-1-src.zip
 https://repository.apache.org/content/repositories/maven-132
 4/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3
 .5.0-alpha-1-src.tar.gz

 Source release checksum(s):
 apache-maven-3.5.0-alpha-1-src.tar.gz sha1:
 6055696aece5b0bfdd0308dae60838b37e218aba
 apache-maven-3.5.0-alpha-1-src.zip sha1:
 7d6adcdf8929205bf20399c71c6a2bdb9ee4f6dd

 Git tag:
 https://git-wip-us.apache.org/repos/asf?p=maven.git;a=commit
 ;h=8e6bbc4d4aa7cdc837625a05358c98ca15f72698

 Staging site:
 https://people.apache.org/~stephenc/maven-3.5.0-alpha-1/

 Vote open for 72 hours.

 [ ] +1
 [ ] +0
 [ ] -1


 Thanks,
 -Stephen

>>>
>>> -
>>> To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
>>> For additional commands, e-mail: dev-h...@maven.apache.org
>>>
>>>
>>
>> ---
>> L'absence de virus dans ce courrier électronique a été vérifiée par le
>> logiciel antivirus Avast.
>> https://www.avast.com/antivirus
>>
>>
>>
>> -
>> To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
>> For additional commands, e-mail: dev-h...@maven.apache.org
>>
>>
>


Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-24 Thread Stephen Connolly
3.5.0 > 3.5.0-alpha-1

On 24 February 2017 at 19:38, Guillaume Boué  wrote:

> I also ran the ITs on a Windows machine, hitting the same error in the
> tests as mentioned by Robert. Additionally, I had the following errors:
>
> Failed tests:
> MavenITmng2199ParentVersionRangeTest>AbstractMavenIntegrationTestCase.runTest:244
> Expected failure when with Maven version 3.5.0-alpha-1
> MavenITmng2199ParentVersionRangeTest>AbstractMavenIntegrationTestCase.runTest:244
> Expected failure when with Maven version 3.5.0-alpha-1
> MavenITmng2199ParentVersionRangeTest>AbstractMavenIntegrationTestCase.runTest:244
> Expected failure when with Maven version 3.5.0-alpha-1
> MavenITmng2199ParentVersionRangeTest>AbstractMavenIntegrationTestCase.runTest:244
> Expected failure when with Maven version 3.5.0-alpha-1
> MavenITmng2199ParentVersionRangeTest>AbstractMavenIntegrationTestCase.runTest:244
> Expected failure when with Maven version 3.5.0-alpha-1
>
> The command used to ran the ITs was:
>
> mvn clean install -Prun-its -Dmaven.repo.local=`pwd`/repo
>
>
> Le 24/02/2017 à 18:34, Robert Scholte a écrit :
>
>> When running the maven-its, I get this failing test. I think the cause is
>> an invalid version range, right?
>>
>> Robert
>>
>> Tests in error:
>> MavenITmng5805PkgTypeMojoConfiguration>AbstractMavenIntegrat
>> ionTestCase.runTest:222->testPkgTypeMojoConfiguration:27 ╗ Verification
>>
>>
>>
>> On Thu, 23 Feb 2017 17:10:18 +0100, Stephen Connolly <
>> stephen.alan.conno...@gmail.com> wrote:
>>
>> Hi,
>>>
>>> We solved 65 issues:
>>> https://issues.apache.org/jira/secure/ReleaseNote.jspa?proje
>>> ctId=12316922=12339664=Text
>>>
>>> There are still a couple of issues left in JIRA for 3.5.0, but I do not
>>> think any of those are blocking an alpha release:
>>> https://issues.apache.org/jira/issues/?jql=project%20%3D%
>>> 20MNG%20AND%20resolution%20%3D%20Unresolved%20AND%20fixVer
>>> sion%20in%20(3.5.0%2C%203.5.0-candidate)%20ORDER%20BY%20due%
>>> 20ASC%2C%20priority%20DESC%2C%20created%20ASC
>>>
>>> In addition there are 315 issues left in JIRA for Maven core:
>>> https://issues.apache.org/jira/issues/?jql=project%20%3D%
>>> 20MNG%20AND%20resolution%20%3D%20Unresolved%20ORDER%20BY%
>>> 20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC
>>>
>>> Staging repo:
>>> https://repository.apache.org/content/repositories/maven-1324
>>>
>>> The distributable binaries and sources for testing can be found here:
>>> https://repository.apache.org/content/repositories/maven-132
>>> 4/org/apache/maven/apache-maven/3.5.0-alpha-1/
>>>
>>> Specifically the zip, tarball, and source archives can be found here:
>>> https://repository.apache.org/content/repositories/maven-132
>>> 4/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-
>>> 3.5.0-alpha-1-bin.zip
>>> https://repository.apache.org/content/repositories/maven-132
>>> 4/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-
>>> 3.5.0-alpha-1-bin.tar.gz
>>> https://repository.apache.org/content/repositories/maven-132
>>> 4/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-
>>> 3.5.0-alpha-1-src.zip
>>> https://repository.apache.org/content/repositories/maven-132
>>> 4/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-
>>> 3.5.0-alpha-1-src.tar.gz
>>>
>>> Source release checksum(s):
>>> apache-maven-3.5.0-alpha-1-src.tar.gz sha1:
>>> 6055696aece5b0bfdd0308dae60838b37e218aba
>>> apache-maven-3.5.0-alpha-1-src.zip sha1:
>>> 7d6adcdf8929205bf20399c71c6a2bdb9ee4f6dd
>>>
>>> Git tag:
>>> https://git-wip-us.apache.org/repos/asf?p=maven.git;a=commit
>>> ;h=8e6bbc4d4aa7cdc837625a05358c98ca15f72698
>>>
>>> Staging site:
>>> https://people.apache.org/~stephenc/maven-3.5.0-alpha-1/
>>>
>>> Vote open for 72 hours.
>>>
>>> [ ] +1
>>> [ ] +0
>>> [ ] -1
>>>
>>>
>>> Thanks,
>>> -Stephen
>>>
>>
>> -
>> To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
>> For additional commands, e-mail: dev-h...@maven.apache.org
>>
>>
>
> ---
> L'absence de virus dans ce courrier électronique a été vérifiée par le
> logiciel antivirus Avast.
> https://www.avast.com/antivirus
>
>
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
> For additional commands, e-mail: dev-h...@maven.apache.org
>
>


Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-24 Thread Stephen Connolly
The version range may not work for 3.5.0-alpha-1 is all

On 24 February 2017 at 19:33, Christian Schulte  wrote:

> Am 02/24/17 um 18:34 schrieb Robert Scholte:
> > When running the maven-its, I get this failing test. I think the cause is
> > an invalid version range, right?
>
> Are you really running the IT master branch? There have been no commits
> to maven master without a successful IT run before. I wonder how this
> could have slipped through.
>
> Regards,
> --
> Christian
>
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
> For additional commands, e-mail: dev-h...@maven.apache.org
>
>


Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-24 Thread Guillaume Boué
I also ran the ITs on a Windows machine, hitting the same error in the 
tests as mentioned by Robert. Additionally, I had the following errors:


Failed tests:
MavenITmng2199ParentVersionRangeTest>AbstractMavenIntegrationTestCase.runTest:244 
Expected failure when with Maven version 3.5.0-alpha-1
MavenITmng2199ParentVersionRangeTest>AbstractMavenIntegrationTestCase.runTest:244 
Expected failure when with Maven version 3.5.0-alpha-1
MavenITmng2199ParentVersionRangeTest>AbstractMavenIntegrationTestCase.runTest:244 
Expected failure when with Maven version 3.5.0-alpha-1
MavenITmng2199ParentVersionRangeTest>AbstractMavenIntegrationTestCase.runTest:244 
Expected failure when with Maven version 3.5.0-alpha-1
MavenITmng2199ParentVersionRangeTest>AbstractMavenIntegrationTestCase.runTest:244 
Expected failure when with Maven version 3.5.0-alpha-1


The command used to ran the ITs was:

mvn clean install -Prun-its -Dmaven.repo.local=`pwd`/repo

Le 24/02/2017 à 18:34, Robert Scholte a écrit :
When running the maven-its, I get this failing test. I think the cause 
is an invalid version range, right?


Robert

Tests in error:
MavenITmng5805PkgTypeMojoConfiguration>AbstractMavenIntegrationTestCase.runTest:222->testPkgTypeMojoConfiguration:27 
╗ Verification




On Thu, 23 Feb 2017 17:10:18 +0100, Stephen Connolly 
 wrote:



Hi,

We solved 65 issues:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922=12339664=Text 



There are still a couple of issues left in JIRA for 3.5.0, but I do not
think any of those are blocking an alpha release:
https://issues.apache.org/jira/issues/?jql=project%20%3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20AND%20fixVersion%20in%20(3.5.0%2C%203.5.0-candidate)%20ORDER%20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC 



In addition there are 315 issues left in JIRA for Maven core:
https://issues.apache.org/jira/issues/?jql=project%20%3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20ORDER%20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC 



Staging repo:
https://repository.apache.org/content/repositories/maven-1324

The distributable binaries and sources for testing can be found here:
https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/ 



Specifically the zip, tarball, and source archives can be found here:
https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-bin.zip 

https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-bin.tar.gz 

https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-src.zip 

https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-src.tar.gz 



Source release checksum(s):
apache-maven-3.5.0-alpha-1-src.tar.gz sha1:
6055696aece5b0bfdd0308dae60838b37e218aba
apache-maven-3.5.0-alpha-1-src.zip sha1:
7d6adcdf8929205bf20399c71c6a2bdb9ee4f6dd

Git tag:
https://git-wip-us.apache.org/repos/asf?p=maven.git;a=commit;h=8e6bbc4d4aa7cdc837625a05358c98ca15f72698 



Staging site:
https://people.apache.org/~stephenc/maven-3.5.0-alpha-1/

Vote open for 72 hours.

[ ] +1
[ ] +0
[ ] -1


Thanks,
-Stephen


-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org




---
L'absence de virus dans ce courrier électronique a été vérifiée par le logiciel 
antivirus Avast.
https://www.avast.com/antivirus


-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-24 Thread Christian Schulte
Am 02/24/17 um 18:34 schrieb Robert Scholte:
> When running the maven-its, I get this failing test. I think the cause is  
> an invalid version range, right?

Are you really running the IT master branch? There have been no commits
to maven master without a successful IT run before. I wonder how this
could have slipped through.

Regards,
-- 
Christian


-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-24 Thread Robert Scholte
When running the maven-its, I get this failing test. I think the cause is  
an invalid version range, right?


Robert

Tests in error:
  MavenITmng5805PkgTypeMojoConfiguration>AbstractMavenIntegrationTestCase.runTest:222->testPkgTypeMojoConfiguration:27  
╗ Verification




On Thu, 23 Feb 2017 17:10:18 +0100, Stephen Connolly  
 wrote:



Hi,

We solved 65 issues:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922=12339664=Text

There are still a couple of issues left in JIRA for 3.5.0, but I do not
think any of those are blocking an alpha release:
https://issues.apache.org/jira/issues/?jql=project%20%3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20AND%20fixVersion%20in%20(3.5.0%2C%203.5.0-candidate)%20ORDER%20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC

In addition there are 315 issues left in JIRA for Maven core:
https://issues.apache.org/jira/issues/?jql=project%20%3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20ORDER%20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC

Staging repo:
https://repository.apache.org/content/repositories/maven-1324

The distributable binaries and sources for testing can be found here:
https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/

Specifically the zip, tarball, and source archives can be found here:
https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-bin.zip
https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-bin.tar.gz
https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-src.zip
https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-src.tar.gz

Source release checksum(s):
apache-maven-3.5.0-alpha-1-src.tar.gz sha1:
6055696aece5b0bfdd0308dae60838b37e218aba
apache-maven-3.5.0-alpha-1-src.zip sha1:
7d6adcdf8929205bf20399c71c6a2bdb9ee4f6dd

Git tag:
https://git-wip-us.apache.org/repos/asf?p=maven.git;a=commit;h=8e6bbc4d4aa7cdc837625a05358c98ca15f72698

Staging site:
https://people.apache.org/~stephenc/maven-3.5.0-alpha-1/

Vote open for 72 hours.

[ ] +1
[ ] +0
[ ] -1


Thanks,
-Stephen


-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-24 Thread Karl Heinz Marbaise

Hi,

On 24/02/17 15:59, Petr Široký wrote:

Hello,

I've tested the 3.5.0-alpha-1 with several quite large projects (hundreds
of modules in total) and everything looks good.

+1 non-binding (hopefully I understood correctly I can do that)



Petr


Thanks...appreciate your feedback...

And of course you can do that...

Kind regards
Karl Heinz Marbaise


On Fri, Feb 24, 2017 at 11:13 AM Stephen Connolly <
stephen.alan.conno...@gmail.com> wrote:


https://issues.apache.org/jira/browse/MNG-6178 created

On 23 February 2017 at 21:56, Christian Schulte  wrote:


Can we have this patch included? I wanted to commit this to master
yesterday when the build job succeeded. This is just pending the Jenkins
update to get the job succeed. I would just merge it to master now.





So that we do not need to re-open MNG-5889 or even create a new issue.
Otherwise

+1

No objections to get a release out.

Regards,
--
Christian



-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-24 Thread Karl Heinz Marbaise

Hi,

highly appreciated to have some feedback from the community...

Thanks for that.

Karl Heinz Marbaise
On 24/02/17 08:58, Grzegorz Grzybek wrote:

Hello

I'm not sure if I can give any vote (even non-binding +1), but I
tested several large OSGi projects using 3.5.0-alpha-1 without
problems.

regards
Grzegorz Grzybek

2017-02-23 23:44 GMT+01:00 Stephen Connolly :

This is only an alpha, I'm not calling a halt unless it is S1/S2, alpha-2
can follow next week

On 23 February 2017 at 21:56, Christian Schulte  wrote:


Can we have this patch included? I wanted to commit this to master
yesterday when the build job succeeded. This is just pending the Jenkins
update to get the job succeed. I would just merge it to master now.





So that we do not need to re-open MNG-5889 or even create a new issue.
Otherwise

+1

No objections to get a release out.

Regards,
--
Christian


-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-24 Thread Petar Tahchiev
+1

I've been testing today with our projects and it all looks good.

2017-02-24 16:59 GMT+02:00 Petr Široký :

> Hello,
>
> I've tested the 3.5.0-alpha-1 with several quite large projects (hundreds
> of modules in total) and everything looks good.
>
> +1 non-binding (hopefully I understood correctly I can do that)
>
> Petr
>
> On Fri, Feb 24, 2017 at 11:13 AM Stephen Connolly <
> stephen.alan.conno...@gmail.com> wrote:
>
> > https://issues.apache.org/jira/browse/MNG-6178 created
> >
> > On 23 February 2017 at 21:56, Christian Schulte  wrote:
> >
> > > Can we have this patch included? I wanted to commit this to master
> > > yesterday when the build job succeeded. This is just pending the
> Jenkins
> > > update to get the job succeed. I would just merge it to master now.
> > >
> > >  > > shortlog;h=refs/heads/MNG-5889>
> > >
> > >  > > 37b5f27080006883613800127d70e8233210555e>
> > >
> > > So that we do not need to re-open MNG-5889 or even create a new issue.
> > > Otherwise
> > >
> > > +1
> > >
> > > No objections to get a release out.
> > >
> > > Regards,
> > > --
> > > Christian
> > >
> > >
> > > -
> > > To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
> > > For additional commands, e-mail: dev-h...@maven.apache.org
> > >
> > >
> >
>



-- 
Regards, Petar!
Karlovo, Bulgaria.
---
Public PGP Key at:
http://pgp.mit.edu:11371/pks/lookup?op=get=0x19658550C3110611
Key Fingerprint: A369 A7EE 61BC 93A3 CDFF  55A5 1965 8550 C311 0611


Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-24 Thread Petr Široký
Hello,

I've tested the 3.5.0-alpha-1 with several quite large projects (hundreds
of modules in total) and everything looks good.

+1 non-binding (hopefully I understood correctly I can do that)

Petr

On Fri, Feb 24, 2017 at 11:13 AM Stephen Connolly <
stephen.alan.conno...@gmail.com> wrote:

> https://issues.apache.org/jira/browse/MNG-6178 created
>
> On 23 February 2017 at 21:56, Christian Schulte  wrote:
>
> > Can we have this patch included? I wanted to commit this to master
> > yesterday when the build job succeeded. This is just pending the Jenkins
> > update to get the job succeed. I would just merge it to master now.
> >
> >  > shortlog;h=refs/heads/MNG-5889>
> >
> >  > 37b5f27080006883613800127d70e8233210555e>
> >
> > So that we do not need to re-open MNG-5889 or even create a new issue.
> > Otherwise
> >
> > +1
> >
> > No objections to get a release out.
> >
> > Regards,
> > --
> > Christian
> >
> >
> > -
> > To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
> > For additional commands, e-mail: dev-h...@maven.apache.org
> >
> >
>


Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-24 Thread Stephen Connolly
https://issues.apache.org/jira/browse/MNG-6178 created

On 23 February 2017 at 21:56, Christian Schulte  wrote:

> Can we have this patch included? I wanted to commit this to master
> yesterday when the build job succeeded. This is just pending the Jenkins
> update to get the job succeed. I would just merge it to master now.
>
>  shortlog;h=refs/heads/MNG-5889>
>
>  37b5f27080006883613800127d70e8233210555e>
>
> So that we do not need to re-open MNG-5889 or even create a new issue.
> Otherwise
>
> +1
>
> No objections to get a release out.
>
> Regards,
> --
> Christian
>
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
> For additional commands, e-mail: dev-h...@maven.apache.org
>
>


Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-24 Thread Stephen Connolly
While we have a legal requirement to get at least 3x+1 votes from PMC
members (which are know as binding votes), all votes are welcome.

The more reports we have from the community, the better!

On Fri 24 Feb 2017 at 07:58, Grzegorz Grzybek  wrote:

> Hello
>
> I'm not sure if I can give any vote (even non-binding +1), but I
> tested several large OSGi projects using 3.5.0-alpha-1 without
> problems.
>
> regards
> Grzegorz Grzybek
>
> 2017-02-23 23:44 GMT+01:00 Stephen Connolly <
> stephen.alan.conno...@gmail.com>:
> > This is only an alpha, I'm not calling a halt unless it is S1/S2, alpha-2
> > can follow next week
> >
> > On 23 February 2017 at 21:56, Christian Schulte  wrote:
> >
> >> Can we have this patch included? I wanted to commit this to master
> >> yesterday when the build job succeeded. This is just pending the Jenkins
> >> update to get the job succeed. I would just merge it to master now.
> >>
> >>  >> shortlog;h=refs/heads/MNG-5889>
> >>
> >>  >> 37b5f27080006883613800127d70e8233210555e>
> >>
> >> So that we do not need to re-open MNG-5889 or even create a new issue.
> >> Otherwise
> >>
> >> +1
> >>
> >> No objections to get a release out.
> >>
> >> Regards,
> >> --
> >> Christian
> >>
> >>
> >> -
> >> To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
> >> For additional commands, e-mail: dev-h...@maven.apache.org
> >>
> >>
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
> For additional commands, e-mail: dev-h...@maven.apache.org
>
> --
Sent from my phone


Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-23 Thread Grzegorz Grzybek
Hello

I'm not sure if I can give any vote (even non-binding +1), but I
tested several large OSGi projects using 3.5.0-alpha-1 without
problems.

regards
Grzegorz Grzybek

2017-02-23 23:44 GMT+01:00 Stephen Connolly :
> This is only an alpha, I'm not calling a halt unless it is S1/S2, alpha-2
> can follow next week
>
> On 23 February 2017 at 21:56, Christian Schulte  wrote:
>
>> Can we have this patch included? I wanted to commit this to master
>> yesterday when the build job succeeded. This is just pending the Jenkins
>> update to get the job succeed. I would just merge it to master now.
>>
>> > shortlog;h=refs/heads/MNG-5889>
>>
>> > 37b5f27080006883613800127d70e8233210555e>
>>
>> So that we do not need to re-open MNG-5889 or even create a new issue.
>> Otherwise
>>
>> +1
>>
>> No objections to get a release out.
>>
>> Regards,
>> --
>> Christian
>>
>>
>> -
>> To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
>> For additional commands, e-mail: dev-h...@maven.apache.org
>>
>>

-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-23 Thread Stephen Connolly
This is only an alpha, I'm not calling a halt unless it is S1/S2, alpha-2
can follow next week

On 23 February 2017 at 21:56, Christian Schulte  wrote:

> Can we have this patch included? I wanted to commit this to master
> yesterday when the build job succeeded. This is just pending the Jenkins
> update to get the job succeed. I would just merge it to master now.
>
>  shortlog;h=refs/heads/MNG-5889>
>
>  37b5f27080006883613800127d70e8233210555e>
>
> So that we do not need to re-open MNG-5889 or even create a new issue.
> Otherwise
>
> +1
>
> No objections to get a release out.
>
> Regards,
> --
> Christian
>
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
> For additional commands, e-mail: dev-h...@maven.apache.org
>
>


Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-23 Thread Christian Schulte
Can we have this patch included? I wanted to commit this to master
yesterday when the build job succeeded. This is just pending the Jenkins
update to get the job succeed. I would just merge it to master now.





So that we do not need to re-open MNG-5889 or even create a new issue.
Otherwise

+1

No objections to get a release out.

Regards,
-- 
Christian


-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-23 Thread Karl Heinz Marbaise

Hi,

tested a larger number of apache maven plugins to build with the new 
version, tested also to build several plugins from mojohaus with the new 
version.


No issues found yet.

So +1 from me.

Kind regards
Karl Heinz Marbaise

On 23/02/17 17:10, Stephen Connolly wrote:

Hi,

We solved 65 issues:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922=12339664=Text

There are still a couple of issues left in JIRA for 3.5.0, but I do not
think any of those are blocking an alpha release:
https://issues.apache.org/jira/issues/?jql=project%20%3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20AND%20fixVersion%20in%20(3.5.0%2C%203.5.0-candidate)%20ORDER%20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC

In addition there are 315 issues left in JIRA for Maven core:
https://issues.apache.org/jira/issues/?jql=project%20%3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20ORDER%20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC

Staging repo:
https://repository.apache.org/content/repositories/maven-1324

The distributable binaries and sources for testing can be found here:
https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/

Specifically the zip, tarball, and source archives can be found here:
https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-bin.zip
https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-bin.tar.gz
https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-src.zip
https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-src.tar.gz

Source release checksum(s):
apache-maven-3.5.0-alpha-1-src.tar.gz sha1:
6055696aece5b0bfdd0308dae60838b37e218aba
apache-maven-3.5.0-alpha-1-src.zip sha1:
7d6adcdf8929205bf20399c71c6a2bdb9ee4f6dd

Git tag:
https://git-wip-us.apache.org/repos/asf?p=maven.git;a=commit;h=8e6bbc4d4aa7cdc837625a05358c98ca15f72698

Staging site:
https://people.apache.org/~stephenc/maven-3.5.0-alpha-1/

Vote open for 72 hours.

[ ] +1
[ ] +0
[ ] -1


Thanks,
-Stephen


-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-23 Thread Tibor Digana
+1

On Thu, Feb 23, 2017 at 5:43 PM, stephenconnolly [via Maven] <
ml-node+s40175n5899782...@n5.nabble.com> wrote:

> +1
>
> Analyzer...
>
> stagingUrl: https://repository.apache.org/content/repositories/maven-1324
> groupId: org.apache.maven
> artifactId: apache-maven
> version: 3.5.0-alpha-1
>
> Source ZIP url exists.
> https://repository.apache.org/content/repositories/maven-
> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> maven-3.5.0-alpha-1-src.zip
>
> Source ZIP SHA1 url exists.
> https://repository.apache.org/content/repositories/maven-
> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> maven-3.5.0-alpha-1-src.zip.sha1
>
> Binary ZIP url exists.
> https://repository.apache.org/content/repositories/maven-
> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> maven-3.5.0-alpha-1-bin.zip
>
> Binary ZIP SHA1 url exists.
> https://repository.apache.org/content/repositories/maven-
> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> maven-3.5.0-alpha-1-bin.zip.sha1
>
> Calculated SHA1 of source ZIP matches published SHA1 of source ZIP.
> 7d6adcdf8929205bf20399c71c6a2bdb9ee4f6dd
>
> Calculated SHA1 of binary ZIP matches published SHA1 of binary ZIP.
> b342491934cb57ee43d511002ded9ab7e597f758
>
> Git revision of release as determined from
> maven-core-3.5.0-alpha-1.jar:org/apache/maven/messages/build.properties(buildNumber):
>
> 8e6bbc4d4aa7cdc837625a05358c98ca15f72698
>
> Files that are present in the source distribution but not in the source
> revision:
> DEPENDENCIES
>
>
> On 23 February 2017 at 16:10, Stephen Connolly <
> [hidden email] >
> wrote:
>
> > Hi,
> >
> > We solved 65 issues:
> > https://issues.apache.org/jira/secure/ReleaseNote.jspa?
> > projectId=12316922=12339664=Text
> >
> > There are still a couple of issues left in JIRA for 3.5.0, but I do not
> > think any of those are blocking an alpha release:
> > https://issues.apache.org/jira/issues/?jql=project%20%;>
> https://issues.apache.org/jira/issues/?jql=project%20%
> > 3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20AND%
> > 20fixVersion%20in%20(3.5.0%2C%203.5.0-candidate)%20ORDER%
> > 20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC
> >
> > In addition there are 315 issues left in JIRA for Maven core:
> > https://issues.apache.org/jira/issues/?jql=project%20%;>
> https://issues.apache.org/jira/issues/?jql=project%20%
> > 3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20ORDER%
> > 20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC
> >
> > Staging repo:
> > https://repository.apache.org/content/repositories/maven-1324
> >
> > The distributable binaries and sources for testing can be found here:
> > https://repository.apache.org/content/repositories/maven-
> > 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/
> >
> > Specifically the zip, tarball, and source archives can be found here:
> > https://repository.apache.org/content/repositories/maven-
> > 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> > maven-3.5.0-alpha-1-bin.zip
> > https://repository.apache.org/content/repositories/maven-
> > 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> > maven-3.5.0-alpha-1-bin.tar.gz
> > https://repository.apache.org/content/repositories/maven-
> > 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> > maven-3.5.0-alpha-1-src.zip
> > https://repository.apache.org/content/repositories/maven-
> > 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> > maven-3.5.0-alpha-1-src.tar.gz
> >
> > Source release checksum(s):
> > apache-maven-3.5.0-alpha-1-src.tar.gz sha1:
> 6055696aece5b0bfdd0308dae60838
> > b37e218aba
> > apache-maven-3.5.0-alpha-1-src.zip sha1: 7d6adcdf8929205bf20399c71c6a2b
> > db9ee4f6dd
> >
> > Git tag:
> > https://git-wip-us.apache.org/repos/asf?p=maven.git;a=commit;h=
> > 8e6bbc4d4aa7cdc837625a05358c98ca15f72698
> >
> > Staging site:
> > https://people.apache.org/~stephenc/maven-3.5.0-alpha-1/
> >
> > Vote open for 72 hours.
> >
> > [ ] +1
> > [ ] +0
> > [ ] -1
> >
> >
> > Thanks,
> > -Stephen
> >
>
>
> --
> If you reply to this email, your message will be added to the discussion
> below:
> http://maven.40175.n5.nabble.com/VOTE-Release-Apache-Maven-3-5-0-alpha-1-
> tp5899775p5899782.html
> To start a new topic under Maven Developers, email
> ml-node+s40175n142166...@n5.nabble.com
> To unsubscribe from Maven Developers, click here
> 
> .
> NAML
> 
>




--
View this message in context: 

Re: [VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-23 Thread Stephen Connolly
+1

Analyzer...

stagingUrl: https://repository.apache.org/content/repositories/maven-1324
groupId: org.apache.maven
artifactId: apache-maven
version: 3.5.0-alpha-1

Source ZIP url exists.
https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-src.zip

Source ZIP SHA1 url exists.
https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-src.zip.sha1

Binary ZIP url exists.
https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-bin.zip

Binary ZIP SHA1 url exists.
https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-bin.zip.sha1

Calculated SHA1 of source ZIP matches published SHA1 of source ZIP.
7d6adcdf8929205bf20399c71c6a2bdb9ee4f6dd

Calculated SHA1 of binary ZIP matches published SHA1 of binary ZIP.
b342491934cb57ee43d511002ded9ab7e597f758

Git revision of release as determined from
maven-core-3.5.0-alpha-1.jar:org/apache/maven/messages/build.properties(buildNumber):
8e6bbc4d4aa7cdc837625a05358c98ca15f72698

Files that are present in the source distribution but not in the source
revision:
DEPENDENCIES


On 23 February 2017 at 16:10, Stephen Connolly <
stephen.alan.conno...@gmail.com> wrote:

> Hi,
>
> We solved 65 issues:
> https://issues.apache.org/jira/secure/ReleaseNote.jspa?
> projectId=12316922=12339664=Text
>
> There are still a couple of issues left in JIRA for 3.5.0, but I do not
> think any of those are blocking an alpha release:
> https://issues.apache.org/jira/issues/?jql=project%20%
> 3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20AND%
> 20fixVersion%20in%20(3.5.0%2C%203.5.0-candidate)%20ORDER%
> 20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC
>
> In addition there are 315 issues left in JIRA for Maven core:
> https://issues.apache.org/jira/issues/?jql=project%20%
> 3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20ORDER%
> 20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC
>
> Staging repo:
> https://repository.apache.org/content/repositories/maven-1324
>
> The distributable binaries and sources for testing can be found here:
> https://repository.apache.org/content/repositories/maven-
> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/
>
> Specifically the zip, tarball, and source archives can be found here:
> https://repository.apache.org/content/repositories/maven-
> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> maven-3.5.0-alpha-1-bin.zip
> https://repository.apache.org/content/repositories/maven-
> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> maven-3.5.0-alpha-1-bin.tar.gz
> https://repository.apache.org/content/repositories/maven-
> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> maven-3.5.0-alpha-1-src.zip
> https://repository.apache.org/content/repositories/maven-
> 1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-
> maven-3.5.0-alpha-1-src.tar.gz
>
> Source release checksum(s):
> apache-maven-3.5.0-alpha-1-src.tar.gz sha1: 6055696aece5b0bfdd0308dae60838
> b37e218aba
> apache-maven-3.5.0-alpha-1-src.zip sha1: 7d6adcdf8929205bf20399c71c6a2b
> db9ee4f6dd
>
> Git tag:
> https://git-wip-us.apache.org/repos/asf?p=maven.git;a=commit;h=
> 8e6bbc4d4aa7cdc837625a05358c98ca15f72698
>
> Staging site:
> https://people.apache.org/~stephenc/maven-3.5.0-alpha-1/
>
> Vote open for 72 hours.
>
> [ ] +1
> [ ] +0
> [ ] -1
>
>
> Thanks,
> -Stephen
>


[VOTE] Release Apache Maven 3.5.0-alpha-1

2017-02-23 Thread Stephen Connolly
Hi,

We solved 65 issues:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922=12339664=Text

There are still a couple of issues left in JIRA for 3.5.0, but I do not
think any of those are blocking an alpha release:
https://issues.apache.org/jira/issues/?jql=project%20%3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20AND%20fixVersion%20in%20(3.5.0%2C%203.5.0-candidate)%20ORDER%20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC

In addition there are 315 issues left in JIRA for Maven core:
https://issues.apache.org/jira/issues/?jql=project%20%3D%20MNG%20AND%20resolution%20%3D%20Unresolved%20ORDER%20BY%20due%20ASC%2C%20priority%20DESC%2C%20created%20ASC

Staging repo:
https://repository.apache.org/content/repositories/maven-1324

The distributable binaries and sources for testing can be found here:
https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/

Specifically the zip, tarball, and source archives can be found here:
https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-bin.zip
https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-bin.tar.gz
https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-src.zip
https://repository.apache.org/content/repositories/maven-1324/org/apache/maven/apache-maven/3.5.0-alpha-1/apache-maven-3.5.0-alpha-1-src.tar.gz

Source release checksum(s):
apache-maven-3.5.0-alpha-1-src.tar.gz sha1:
6055696aece5b0bfdd0308dae60838b37e218aba
apache-maven-3.5.0-alpha-1-src.zip sha1:
7d6adcdf8929205bf20399c71c6a2bdb9ee4f6dd

Git tag:
https://git-wip-us.apache.org/repos/asf?p=maven.git;a=commit;h=8e6bbc4d4aa7cdc837625a05358c98ca15f72698

Staging site:
https://people.apache.org/~stephenc/maven-3.5.0-alpha-1/

Vote open for 72 hours.

[ ] +1
[ ] +0
[ ] -1


Thanks,
-Stephen