RE: Unreliable TCP and retries for maven publish

2023-05-22 Thread Finkelman, Jacob
Would changing that type signature automatically add retries for the checksums when using the wagon transport? If not, what else would need to be done to add retries? Would that help with the native transport at all? -Original Message- From: Michael Osipov Sent: Friday, May 19, 2023 5:

[ANN] Release Maven Dependency Plugin 3.6.0 released

2023-05-22 Thread Michael Osipov
The Apache Maven team is pleased to announce the release of the Maven Dependency Plugin version 3.6.0. https://maven.apache.org/plugins/maven-dependency-plugin/ You should specify the version in your project's plugin configuration: org.apache.maven.plugins maven-dependency-plugin 3.6.0

[ANN] Release Maven Dependency Plugin 3.6.0 released

2023-05-22 Thread Michael Osipov
The Apache Maven team is pleased to announce the release of the Maven Dependency Plugin version 3.6.0. https://maven.apache.org/plugins/maven-dependency-plugin/ You should specify the version in your project's plugin configuration: org.apache.maven.plugins maven-dependency-plugin 3.6.0

[ANN] Maven Checkstyle Plugin 3.3.0 released

2023-05-22 Thread Michael Osipov
The Apache Maven team is pleased to announce the release of the Maven Checkstyle Plugin, version 3.3.0. https://maven.apache.org/plugins/maven-checkstyle-plugin/ You should specify the version in your project's plugin configuration: org.apache.maven.plugins >maven-checkstyle-plugin 3.3.

[RESULT] [VOTE] Release Maven Dependency Plugin version 3.6.0

2023-05-22 Thread Michael Osipov
Hi, The vote has passed with the following result: +1: Slawomir Jaranowski, Sylwester Lachiewicz, Tamás Cservenák, Guillaume Nodet PMC quorum: reached I will promote the artifacts to the central repo, the source release ZIP file and add this release the board report. -

[RESULT] [VOTE] Release Maven Checkstyle Plugin version 3.3.0

2023-05-22 Thread Michael Osipov
Hi, The vote has passed with the following result: +1: Slawomir Jaranowski, Sylwester Lachiewicz, Tamás Cservenák, Guillaume Nodet PMC quorum: reached I will promote the artifacts to the central repo, the source release ZIP file and add this release the board report. -

Re: maven resolver beyond 1.6.x

2023-05-22 Thread Tamás Cservenák
By re-reading your mail, I just figured I might have missed your point as well :) So yes,: - declare resolver artifacts you need as "provided" - stick with resolver api, spi, util (all provided) and you are on the safe side, whatever Maven you use (naturally from [3.1-3.999] range, as Maven 3.0 u

Re: maven resolver beyond 1.6.x

2023-05-22 Thread Tamás Cservenák
Howdy, as long as your code "play by the rules" (as explained here): https://maven.apache.org/resolver/api-compatibility.html we guarantee you binary compatibility when using resolver within Maven. That said, in your mojo you just inject the reposystem "as usual" (so as you say in your mail) and

Re: getting rid of Contextualizable

2023-05-22 Thread Tamás Cservenák
Howdy, yes, Contextualizable, Startable, Stoppable, etc are all stuff from oldie Plexus DI that is EOL. Get rid of all these. Moreover, am really unsure you _really_ needs the container, as IMHO what you need instead is: @Inject Map macroTypes; and then just grab from that map what you need. Re