Re: [VOTE] Release Maven Plugin Tools version 3.13.0
On 03/05/2024 08:57, Michael Osipov wrote: Hi, we solved 5 issues: https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12317820&version=12354458 There are still a couple of issues left in JIRA: https://issues.apache.org/jira/issues/?jql=project%20%3D%20MPLUGIN%20AND%20resolution%20%3D%20Unresolved Staging repo: https://repository.apache.org/content/repositories/maven-2108/ https://repository.apache.org/content/repositories/maven-2108/org/apache/maven/plugin-tools/maven-plugin-tools/3.13.0/maven-plugin-tools-3.13.0-source-release.zip Source release checksum(s): maven-plugin-tools-3.13.0-source-release.zip sha512: a572bd12b252a6794051277050dc1f9750f60f6ab06f097b3a26acd5de35b4a99c2796eb36b4faac6a9bb98a0d21c6df4a5c61f8f766f60e6af524c9bcb3211d Staging site: https://maven.apache.org/plugin-tools-archives/plugin-tools-LATEST/ Guide to testing staged releases: https://maven.apache.org/guides/development/guide-testing-releases.html Vote open for 72 hours. [ ] +1 [ ] +0 [ ] -1 - To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org For additional commands, e-mail: dev-h...@maven.apache.org Tested on an unofficial plugin that I maintain, no oddities. +1 Thanks, Maarten - To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org For additional commands, e-mail: dev-h...@maven.apache.org
[RESULT] [VOTE] Release Apache Maven Script Interpreter version 1.6
Hi, The vote has passed with the following result: +1: Slawomir Jaranowski, Sylwester Lachiewicz, Romain Manni-Bucau, Olivier Lamy, Herve Boutemy PMC quorum: reached I will promote the source release zip file to the Apache distribution area and the artifacts to the central repo. -- Sławomir Jaranowski
[ANN] Apache Maven Script Interpreter version 1.6 Released
The Apache Maven team is pleased to announce the release of the Apache Maven Script Interpreter version 1.6 This component provides some utilities to interpret/execute some scripts for various implementations: Groovy or BeanShell. https://maven.apache.org/shared/maven-script-interpreter/ You should specify the version in your project's dependency configuration: org.apache.maven.shared maven-script-interpreter 1.6 You can download the appropriate sources etc. from the download page: https://maven.apache.org/shared/maven-script-interpreter/download.cgi Release Notes - Maven Shared Components - Version maven-script-interpreter-1.6 ** Improvement * [MSHARED-1386] - Context ClassLoader for current thread should be managed ** Dependency upgrade * [MSHARED-1383] - Upgrade Parent to 42 * [MSHARED-1384] - Bump commons-io:commons-io from 2.16.0 to 2.16.1 * [MSHARED-1385] - Bump org.apache.groovy:groovy from 4.0.20 to 4.0.21 Enjoy, -The Apache Maven team
Re: Merge staged classifiers and deploy
Howdy, We have a similar use case (unsolved yet, done manually) in maven-mvnd, where native binaries for various OS es (produced by GraalVM) need to be collected Stay tuned. T On Thu, May 2, 2024 at 3:38 AM tison wrote: > Hi, > > I found the other thread talks about nexus-staging-plugin and it's > deprecated. > > In Apache OpenDAL, we're currently relying on nexus-staging-plugin for > merging staged classifiers (i.e., JARs with native library on different > platforms) and deploy. > > We wrote [1] and [2] for doing so, and IIRC I spent a few days but fail to > find the way achieve this in maven-deploy-plugin. > > [1] > > https://github.com/apache/opendal/blob/v0.45.1/.github/workflows/release_java.yml > [2] > > https://github.com/apache/opendal/blob/v0.45.1/scripts/merge_local_staging.py > > Did you ever encounter this case? Is there any reference? > > Best, > tison. >
Re: Quo Vadis Maven?
I'd like to release beta-1 next week. Maven Daemon is ready to be upgrade to it with https://github.com/apache/maven-mvnd/pull/974 Tamás, what's your plan regarding the two remaining issues: * https://issues.apache.org/jira/browse/MNG-8041 * https://issues.apache.org/jira/browse/MNG-8073 Cheers, Guillaume Le mar. 23 avr. 2024 à 23:12, Tamás Cservenák a écrit : > Howdy, > > This is just a short newsflash about upcoming planned releases related to > Maven. > > Recently we got a huge spike in plugin releases, with various fixes and > improvements. I will not enumerate all of them here, just use `mvn > versions:display-plugin-updates` to pick them up ;) > (and more plugins to come). > > What I do want to share is about our upcoming Maven releases... > > Maven 3.9.7 is nearing (read: coming soon), and will have an important > Resolver update and other important fixes. Most importantly, the file-locks > are getting nice improvement (feedback VERY welcome). > > Maven 3.9.7 issues: > > https://issues.apache.org/jira/issues/?jql=project%20%3D%20MNG%20AND%20fixVersion%20%3D%203.9.7 > > Resolver 1.9.19 issues (mostly bug fixes): > > https://issues.apache.org/jira/issues/?jql=project%20%3D%20MRESOLVER%20AND%20fixVersion%20%3D%201.9.19 > > At the same time, we plan to release Maven Daemon (m39) as well, to have it > aligned with Maven 3,9,7: with many bug fixes and improvements/alignments > to "how Maven 3 behave". Our goal is to make the two (mvn and mvnd) > interchangeable on workstations. > > Next, Maven 4 is turning beta, so the next release will be beta1! And > again, same thing for Maven Damon (m40), we will have a release that will > include Maven 4 beta-1. > > Maven 4 beta-1 > > https://issues.apache.org/jira/issues/?jql=project%20%3D%20MNG%20AND%20fixVersion%20%3D%204.0.0-beta-1 > > Resolver 2.0.0 (currently alpha-11, will become beta after Maven4 beta-1 > release): > > https://issues.apache.org/jira/issues/?jql=project%20%3D%20MRESOLVER%20AND%20fixVersion%20%3D%202.0.0-alpha-11 > > Keep your eyes on our upcoming releases, > and have fun! > - The Apache Maven team > -- Guillaume Nodet
Re: Quo Vadis Maven?
MNG-8041: can be moved out, needs a bit more verification MNG-8073: needs modello release, and can be done. but beta-2 is fine as well So IMHO both can be pushed to beta-2 T On Fri, May 3, 2024 at 5:32 PM Guillaume Nodet wrote: > I'd like to release beta-1 next week. > Maven Daemon is ready to be upgrade to it with > https://github.com/apache/maven-mvnd/pull/974 > > Tamás, what's your plan regarding the two remaining issues: > * https://issues.apache.org/jira/browse/MNG-8041 > * https://issues.apache.org/jira/browse/MNG-8073 > > Cheers, > Guillaume > > Le mar. 23 avr. 2024 à 23:12, Tamás Cservenák a > écrit : > > > Howdy, > > > > This is just a short newsflash about upcoming planned releases related to > > Maven. > > > > Recently we got a huge spike in plugin releases, with various fixes and > > improvements. I will not enumerate all of them here, just use `mvn > > versions:display-plugin-updates` to pick them up ;) > > (and more plugins to come). > > > > What I do want to share is about our upcoming Maven releases... > > > > Maven 3.9.7 is nearing (read: coming soon), and will have an important > > Resolver update and other important fixes. Most importantly, the > file-locks > > are getting nice improvement (feedback VERY welcome). > > > > Maven 3.9.7 issues: > > > > > https://issues.apache.org/jira/issues/?jql=project%20%3D%20MNG%20AND%20fixVersion%20%3D%203.9.7 > > > > Resolver 1.9.19 issues (mostly bug fixes): > > > > > https://issues.apache.org/jira/issues/?jql=project%20%3D%20MRESOLVER%20AND%20fixVersion%20%3D%201.9.19 > > > > At the same time, we plan to release Maven Daemon (m39) as well, to have > it > > aligned with Maven 3,9,7: with many bug fixes and improvements/alignments > > to "how Maven 3 behave". Our goal is to make the two (mvn and mvnd) > > interchangeable on workstations. > > > > Next, Maven 4 is turning beta, so the next release will be beta1! And > > again, same thing for Maven Damon (m40), we will have a release that will > > include Maven 4 beta-1. > > > > Maven 4 beta-1 > > > > > https://issues.apache.org/jira/issues/?jql=project%20%3D%20MNG%20AND%20fixVersion%20%3D%204.0.0-beta-1 > > > > Resolver 2.0.0 (currently alpha-11, will become beta after Maven4 beta-1 > > release): > > > > > https://issues.apache.org/jira/issues/?jql=project%20%3D%20MRESOLVER%20AND%20fixVersion%20%3D%202.0.0-alpha-11 > > > > Keep your eyes on our upcoming releases, > > and have fun! > > - The Apache Maven team > > > > > -- > > Guillaume Nodet >
Re: [VOTE] Release Maven Plugin Tools version 3.13.0
+1 pt., 3 maj 2024 o 10:13 Maarten Mulders napisał(a): > On 03/05/2024 08:57, Michael Osipov wrote: > > Hi, > > > > we solved 5 issues: > > > https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12317820&version=12354458 > > > > There are still a couple of issues left in JIRA: > > > https://issues.apache.org/jira/issues/?jql=project%20%3D%20MPLUGIN%20AND%20resolution%20%3D%20Unresolved > > > > Staging repo: > > https://repository.apache.org/content/repositories/maven-2108/ > > > https://repository.apache.org/content/repositories/maven-2108/org/apache/maven/plugin-tools/maven-plugin-tools/3.13.0/maven-plugin-tools-3.13.0-source-release.zip > > > > Source release checksum(s): > > maven-plugin-tools-3.13.0-source-release.zip > > sha512: > > > a572bd12b252a6794051277050dc1f9750f60f6ab06f097b3a26acd5de35b4a99c2796eb36b4faac6a9bb98a0d21c6df4a5c61f8f766f60e6af524c9bcb3211d > > > > Staging site: > > https://maven.apache.org/plugin-tools-archives/plugin-tools-LATEST/ > > > > Guide to testing staged releases: > > https://maven.apache.org/guides/development/guide-testing-releases.html > > > > Vote open for 72 hours. > > > > [ ] +1 > > [ ] +0 > > [ ] -1 > > > > - > > To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org > > For additional commands, e-mail: dev-h...@maven.apache.org > > > > Tested on an unofficial plugin that I maintain, no oddities. > > +1 > > Thanks, > > Maarten > > - > To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org > For additional commands, e-mail: dev-h...@maven.apache.org > >