Re: [VOTE] Release Apache Maven Remote Resources Plugin version 1.7.0

2020-01-20 Thread Hervé BOUTEMY
here is my +1 I need more votes, please Regards, Hervé Le samedi 18 janvier 2020, 22:05:29 CET Hervé BOUTEMY a écrit : > Hi, > > We solved 2 issues: > https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12317825 > rsion=12331232=Text > > Staging repo: >

Re: [MCHECKSTYLE] release for upstream checkstyle

2020-01-20 Thread Enrico Olivelli
Master is now in great shape. There is a PR to update to 8.23, but as Benjamin says I would not commit that change now https://github.com/apache/maven-checkstyle-plugin/pull/24 If now one objects I will send the VOTE email tomorrow or within this week current git sha is

Re: [VOTE] Release Apache Maven Remote Resources Plugin version 1.7.0

2020-01-20 Thread Karl Heinz Marbaise
Hi, +1 from me. Kind regards Karl Heinz Marbaise On 18.01.20 22:05, Hervé BOUTEMY wrote: Hi, We solved 2 issues: https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12317825=12331232=Text Staging repo: https://repository.apache.org/content/repositories/maven-1546/

BuildPluginManager NPE

2020-01-20 Thread Francois Papon
Hi, I'm using the BuildPluginManager in my custom maven-plugin to execute an external maven plugin but I have a NPE  in the executeMojo because the maven session in the external maven plugin is null. Here an example of the code I'm using:             PluginDescriptor toolPluginDescriptor =

Re: archiving obsolete Git repository

2020-01-20 Thread Robert Scholte
I've already let INFRA close https://github.com/apache/maven-pom See https://issues.apache.org/jira/browse/INFRA-19704 Robert On 19-1-2020 20:57:01, Hervé BOUTEMY wrote: As discussed recently, we have multiple obsolete Git repositories from old projects or read-only svn2git, that are confusing

Re: BuildPluginManager NPE

2020-01-20 Thread Francois Papon
Hi, I found a workaround by adding the parameter in the configuration: ${session} However, I don't understand why the default values of the external plugin are not used: @Parameter(defaultValue = "${session}", readonly = true)  protected MavenSession mavenSession; regards, François