Re: Read-only parameter can be set

2019-04-04 Thread Hervé BOUTEMY
sadly nothing: this is a known limitation in Maven 3 (that did not exist in Maven 2) https://issues.apache.org/jira/browse/MNG-5001 I never had time to dig precisely into source code to see how hard the fix would be. What I know is that when the fix will be available, we'll probably need a grac

Re: [VOTE] Release Apache Maven Version 3.6.1

2019-04-04 Thread Francois Papon
+1 (non-binding) Thanks! regards, François Papon fpa...@apache.org Le 04/04/2019 à 23:55, Karl Heinz Marbaise a écrit : > Hi, > > We have solved 42 issues: > https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922&version=12338966 > > > There are issues left in JIRA for Maven

Re: [VOTE] Release Apache Maven Version 3.6.1

2019-04-04 Thread Karl Heinz Marbaise
Hi, On 05.04.19 03:58, Gabriel Belingueres wrote: Hi: Please advise that the solved issue URL (JIRA Release notes) for 3.6.1 is: https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12344378&projectId=12316922 Outch... copy&paste ;-).. Thanks for finding this.. Kind regards K

Re: [VOTE] Release Apache Maven Version 3.6.1

2019-04-04 Thread Gabriel Belingueres
Hi: Please advise that the solved issue URL (JIRA Release notes) for 3.6.1 is: https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12344378&projectId=12316922 My vote: +1 non-binding Thanks for the hard work! Gabriel El jue., 4 de abr. de 2019 a la(s) 16:55, Karl Heinz Marbaise ( kh

[VOTE] Release Apache Maven Version 3.6.1

2019-04-04 Thread Karl Heinz Marbaise
Hi, We have solved 42 issues: https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922&version=12338966 There are 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%20key%20DESC%2C

Re: Checkstyle plugin - bump to java 8 ?

2019-04-04 Thread Enrico Olivelli
I will push the change. Thanks And I also want to cut a release soon Cheers Enrico Il gio 4 apr 2019, 17:28 Robert Scholte ha scritto: > Indeed a valid reason to push the minimum required Java version to 8 > > Robert > > On Thu, 04 Apr 2019 13:46:59 +0200, Enrico Olivelli > > wrote: > > > Hi

Re: Checkstyle plugin - bump to java 8 ?

2019-04-04 Thread Robert Scholte
Indeed a valid reason to push the minimum required Java version to 8 Robert On Thu, 04 Apr 2019 13:46:59 +0200, Enrico Olivelli wrote: Hi, The Maven CheckStyle plugin currently supports Java 7 but latest Checkstyle versions require Java 8. For this reason we are stuck to an older version o

Re: Checkstyle plugin - bump to java 8 ?

2019-04-04 Thread Anders Hammar
Sounds reasonable to me. /Anders On Thu, Apr 4, 2019 at 1:47 PM Enrico Olivelli wrote: > Hi, > The Maven CheckStyle plugin currently supports Java 7 but latest > Checkstyle versions require Java 8. > For this reason we are stuck to an older version of Checkstyle and > users want to use the new

Checkstyle plugin - bump to java 8 ?

2019-04-04 Thread Enrico Olivelli
Hi, The Maven CheckStyle plugin currently supports Java 7 but latest Checkstyle versions require Java 8. For this reason we are stuck to an older version of Checkstyle and users want to use the new version. The dependency can be overridden but this is not very user friendly. Given that check style

Read-only parameter can be set

2019-04-04 Thread Stephane Nicoll
Hey, I have a weird case trying to deprecate a "finalName" property where said property can still be set by the user. Here is the definition: /** * Name of the generated archive. * @since 1.0 */ @Parameter(defaultValue = "${project.build.finalName}", readonly = true) private String finalName;