Re: [DISCUSS] Modello release

2022-02-13 Thread Vladimir Sitnikov
I believe the added CachingWriter is might become a cause of silent
failures.

What CachingWriter does is an attempt to read the file and decode it with
the provided encoding.
Apparently, the decoding might fail since the file might be written in
another encoding or it might be corrupted.

A better approach would be to convert the created String into `byte[]`, and
then compare the bytes with file contents.
Then you never really need to decode the file

Could someone with commit privileges just fix it?
The fix is just to remove readString and writeString methods, and use
Arrays.equals to compare the contents.
Then, you can compare file contents and avoid reading the file if you know
the length differs (it optimizes the "file differs" case).



I remember I faced "Maven recompiling everything" issue multiple times, so
I wonder if Maven itself has a solution for that.
I understand tracking inputs and outputs might take a while to implement, so
what if Maven had a solid API for generating files that skips overwriting
if the contents are the same?

Sample issues on the top of my head:
https://issues.apache.org/jira/browse/MRRESOURCES-91
https://github.com/freemarker/fmpp/issues/11
https://github.com/julianhyde/hydromatic-resource/pull/4

Why does every plugin have to reinvent a half-broken caching wheel?

Vladimir


Re: [VOTE] Maven Compiler Plugin 3.10.0

2022-02-13 Thread Guillaume Nodet
+1

Le ven. 11 févr. 2022 à 10:37, Olivier Lamy  a écrit :

> Hi,
> I'd like to release Apache Maven Compiler Plugin 3.10.0
>
> 7 issues fixed
> https://issues.apache.org/jira/projects/MCOMPILER/versions/12351256
>
> draft github release notes (sadly only for people with write access as it's
> a draft:() :
>
> https://github.com/apache/maven-compiler-plugin/releases/tag/untagged-afb69321207f90da84d2
>
>
> staging repo
> https://repository.apache.org/content/repositories/maven-1710/
> artifacts here
>
> https://repository.apache.org/content/repositories/maven-1710/org/apache/maven/plugins/maven-compiler-plugin/3.10.0/
>
> staging site
> https://maven.apache.org/plugins-archives/maven-compiler-plugin-LATEST/
>
> Vote open for 72H
>
> cheers
> --
> Olivier
>


-- 

Guillaume Nodet


Re: [DISCUSS] Modello release

2022-02-13 Thread Hervé BOUTEMY
great, the new report is really nice
thank you Olivier

Le lundi 14 février 2022, 03:38:00 CET Olivier Lamy a écrit :
> normally there should be a draft one generated by release-drafter and you
> only have to associate the tag and publish it.
> Dependabot updates are under the label dependencies.
> some PRs didn't have any label associated so I added some to have a correct
> category.
> anyway I have regenerated it
> https://github.com/codehaus-plexus/modello/releases/tag/modello-2.0.0
> After the usual release process next time Hervé just go there
> https://github.com/codehaus-plexus/modello/releases.
> The top one is the draft for the current release. just edit the title or
> not (feel free to add manual content), associate to a tag, publish it and
> voila!
> 
> On Mon, 14 Feb 2022 at 01:48, Hervé BOUTEMY  wrote:
> > I did it, but I'm not convinced by the result
> > 
> > if someone knows how to do better, please help :)
> > 
> > Regards,
> > 
> > Hervé
> > 
> > Le dimanche 13 février 2022, 15:54:08 CET Slawomir Jaranowski a écrit :
> > > Hi,
> > > 
> > > Hervé can you add release notes?
> > > You should have a option "Auto-generate release notes." on tag
> > > https://github.com/codehaus-plexus/modello/releases/tag/modello-2.0.0
> > > 
> > > 
> > > niedz., 13 lut 2022 o 15:42 Hervé BOUTEMY 
> > > 
> > > napisał(a):
> > > > Modello 2.0.0 released
> > > > 
> > > > https://codehaus-plexus.github.io/modello/
> > > > 
> > > > Regards,
> > > > 
> > > > Hervé
> > > > 
> > > > Le lundi 31 janvier 2022, 08:30:08 CET Guillaume Nodet a écrit :
> > > > > I was looking at why the maven builds are a bit slow and found out
> > 
> > one
> > 
> > > > > of
> > > > > the culprit is modello which overwrites its generated files even if
> > > > > there
> > > > > are no changes: that cascades to recompiling the module, checking
> > > > > the
> > > > 
> > > > style
> > > > 
> > > > > again, making a new archive and then recompiling the dependant
> > 
> > modules
> > 
> > > > > aso...
> > > > > That was fixed a few months ago with
> > > > > 
> > > > >   https://github.com/codehaus-plexus/modello/pull/116
> > > > > 
> > > > > Would it be possible to release modello to be able to incorporate
> > > > > the
> > > > > fix
> > > > > and continue the work on optimization the build ?
> > > > > 
> > > > > I'm willing to help in any way if that can actually speed up
> > 
> > things...
> > 
> > > > > Cheers,
> > > > > Guillaume
> > > > 
> > > > -
> > > > 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



[RESULT] [VOTE] Apache Maven Compiler 3.10.0

2022-02-13 Thread Olivier Lamy
Hi,
positive votes by date/time
+1: Maartenn, Karl-Heinz, Hervé, Olivier, Tibor
no negative vote
And last but not least the PMC quorum has been reached.

It looks like the vote passed without too many complaints and some happy
people :)
I will continue the release process.

Thanks for your attention!
regards
Olivier


Re: [DISCUSS] Modello release

2022-02-13 Thread Olivier Lamy
normally there should be a draft one generated by release-drafter and you
only have to associate the tag and publish it.
Dependabot updates are under the label dependencies.
some PRs didn't have any label associated so I added some to have a correct
category.
anyway I have regenerated it
https://github.com/codehaus-plexus/modello/releases/tag/modello-2.0.0
After the usual release process next time Hervé just go there
https://github.com/codehaus-plexus/modello/releases.
The top one is the draft for the current release. just edit the title or
not (feel free to add manual content), associate to a tag, publish it and
voila!


On Mon, 14 Feb 2022 at 01:48, Hervé BOUTEMY  wrote:

> I did it, but I'm not convinced by the result
>
> if someone knows how to do better, please help :)
>
> Regards,
>
> Hervé
>
> Le dimanche 13 février 2022, 15:54:08 CET Slawomir Jaranowski a écrit :
> > Hi,
> >
> > Hervé can you add release notes?
> > You should have a option "Auto-generate release notes." on tag
> > https://github.com/codehaus-plexus/modello/releases/tag/modello-2.0.0
> >
> >
> > niedz., 13 lut 2022 o 15:42 Hervé BOUTEMY 
> >
> > napisał(a):
> > > Modello 2.0.0 released
> > >
> > > https://codehaus-plexus.github.io/modello/
> > >
> > > Regards,
> > >
> > > Hervé
> > >
> > > Le lundi 31 janvier 2022, 08:30:08 CET Guillaume Nodet a écrit :
> > > > I was looking at why the maven builds are a bit slow and found out
> one
> > > > of
> > > > the culprit is modello which overwrites its generated files even if
> > > > there
> > > > are no changes: that cascades to recompiling the module, checking the
> > >
> > > style
> > >
> > > > again, making a new archive and then recompiling the dependant
> modules
> > > > aso...
> > > > That was fixed a few months ago with
> > > >
> > > >   https://github.com/codehaus-plexus/modello/pull/116
> > > >
> > > > Would it be possible to release modello to be able to incorporate the
> > > > fix
> > > > and continue the work on optimization the build ?
> > > >
> > > > I'm willing to help in any way if that can actually speed up
> things...
> > > >
> > > > Cheers,
> > > > Guillaume
> > >
> > > -
> > > 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] Maven Compiler Plugin 3.10.0

2022-02-13 Thread Tibor Digana
+1
Build .. ok

Dňa pi 11. 2. 2022, 10:37 Olivier Lamy  napísal(a):

> Hi,
> I'd like to release Apache Maven Compiler Plugin 3.10.0
>
> 7 issues fixed
> https://issues.apache.org/jira/projects/MCOMPILER/versions/12351256
>
> draft github release notes (sadly only for people with write access as it's
> a draft:() :
>
> https://github.com/apache/maven-compiler-plugin/releases/tag/untagged-afb69321207f90da84d2
>
>
> staging repo
> https://repository.apache.org/content/repositories/maven-1710/
> artifacts here
>
> https://repository.apache.org/content/repositories/maven-1710/org/apache/maven/plugins/maven-compiler-plugin/3.10.0/
>
> staging site
> https://maven.apache.org/plugins-archives/maven-compiler-plugin-LATEST/
>
> Vote open for 72H
>
> cheers
> --
> Olivier
>


Re: [VOTE] Maven Compiler Plugin 3.10.0

2022-02-13 Thread Olivier Lamy
my +1

On Fri, 11 Feb 2022 at 19:36, Olivier Lamy  wrote:

> Hi,
> I'd like to release Apache Maven Compiler Plugin 3.10.0
>
> 7 issues fixed
> https://issues.apache.org/jira/projects/MCOMPILER/versions/12351256
>
> draft github release notes (sadly only for people with write access as
> it's a draft:() :
> https://github.com/apache/maven-compiler-plugin/releases/tag/untagged-afb69321207f90da84d2
>
>
> staging repo
> https://repository.apache.org/content/repositories/maven-1710/
> artifacts here
> https://repository.apache.org/content/repositories/maven-1710/org/apache/maven/plugins/maven-compiler-plugin/3.10.0/
>
> staging site
> https://maven.apache.org/plugins-archives/maven-compiler-plugin-LATEST/
>
> Vote open for 72H
>
> cheers
> --
> Olivier
>


Re: Upcoming release of maven-dependency-plugin

2022-02-13 Thread Falko Modler

Hi,

my experiments failed.

Maven is just too eager to validate versions (which is a good thing in
general), so setting such version properties via a plugin (even without
requiresDependencyResolution) won't help with the cases I had in my mind.

I think https://issues.apache.org/jira/browse/MNG-6378 comes close to
what I'd actually need. I'll leave a comment there.

Long story short: No delay for doing a release from my side!

Cheers,

Falko


Am 10.02.2022 um 12:39 schrieb Tibor Digana:

Hi Falco, do not keep it in your mind, file a Jira ticket. If you post a PR
in progress, it would be worth to give a feedback in advance. Somebody may
guide you in the right direction rather sooner than later. T

Dňa št 10. 2. 2022, 11:45 Falko Modler  napísal(a):


TBH, I haven't created an issue yet. I wanted to create a working draft
first and play around with it to see whether it meets my needs.

I might be able to finish it on Sunday.

Cheers,

Falko

Am 10.02.2022 um 09:40 schrieb Slawomir Jaranowski:

Hi Falko

Which issue are you working on?
How much time do you need to finish your work?

czw., 10 lut 2022 o 01:07 Falko Modler  napisał(a):


Hi Slawomir,

a few weeks ago I started working on extending the "properties" goal to
create a version property per dependency.

This would be very useful for projects like Quarkus that have a big BOM
and would like to reuse versions from that BOM for various things in
integration tests etc.

It would be nice to have more time to finish that, but I wouldn't call
this "critical".

Cheers,

Falko

Am 09.02.2022 um 23:50 schrieb Slawomir Jaranowski:

Hi,

There are 17 issues resolved


https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12317227=12340588

Some of them are critical.

Do we have plans to resolve more issues in the near future?

Last release was about 7 months ago.

If there are no objections I can take care of it next week.


-
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



[VOTE] Release Maven Doxia version 2.0.0-M2

2022-02-13 Thread Michael Osipov

Hi,

We solved 4 issues:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12317230=12351270

There are still a couple of issues left in JIRA:
https://issues.apache.org/jira/issues/?jql=project%20%3D%20DOXIA%20AND%20resolution%20%3D%20Unresolved

Staging repo:
https://repository.apache.org/content/repositories/maven-1714/
https://repository.apache.org/content/repositories/maven-1714/org/apache/maven/doxia/doxia/2.0.0-M2/doxia-2.0.0-M2-source-release.zip

Source release checksum(s):
doxia-2.0.0-M2-source-release.zip
sha512: 
f01758edf78ae4dfdc71b6b08aca1f7f0c8d2d3bd918ef6950aa3b479f098d09504b438a4f0b45d54b0a73e7312ec6bf47faa951b9e722dc7a212224c21acfb5


Staging site:
http://maven.apache.org/doxia/doxia-archives/doxia-LATEST/

Guide to testing staged releases:
http://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



Re: [VOTE] Release Maven Site Plugin version 3.11.0

2022-02-13 Thread Michael Osipov

Am 2022-02-13 um 12:37 schrieb Michael Osipov:

Hi,

We solved 4 issues:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12317923=12351142 



There are still a couple of issues left in JIRA:
https://issues.apache.org/jira/issues/?jql=project%20%3D%20MSITE%20AND%20resolution%20%3D%20Unresolved 



Staging repo:
https://repository.apache.org/content/repositories/maven-1713/
https://repository.apache.org/content/repositories/maven-1713/org/apache/maven/plugins/maven-site-plugin/3.11.0/maven-site-plugin-3.11.0-source-release.zip 



Source release checksum(s):
maven-site-plugin-3.11.0-source-release.zip
sha512: 
8c0195a722cf966b6f7107525662d71c89c0150ff4e2a861daa469e118eced2a8a9d46ddf5a9725d3839982f723a1a7740d085c77b0d4e3cf2d8c8060264310f 



Staging site:
https://maven.apache.org/plugins-archives/maven-site-plugin-LATEST/

Guide to testing staged releases:
https://maven.apache.org/guides/development/guide-testing-releases.html

Vote open for 72 hours.


+1

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



Re: [DISCUSS] Modello release

2022-02-13 Thread Michael Osipov

Frankly, it is very hard to filter human changes from the dependabot noise.

Am 2022-02-13 um 16:48 schrieb Hervé BOUTEMY:

I did it, but I'm not convinced by the result

if someone knows how to do better, please help :)

Regards,

Hervé

Le dimanche 13 février 2022, 15:54:08 CET Slawomir Jaranowski a écrit :

Hi,

Hervé can you add release notes?
You should have a option "Auto-generate release notes." on tag
https://github.com/codehaus-plexus/modello/releases/tag/modello-2.0.0


niedz., 13 lut 2022 o 15:42 Hervé BOUTEMY 

napisał(a):

Modello 2.0.0 released

https://codehaus-plexus.github.io/modello/

Regards,

Hervé

Le lundi 31 janvier 2022, 08:30:08 CET Guillaume Nodet a écrit :

I was looking at why the maven builds are a bit slow and found out one
of
the culprit is modello which overwrites its generated files even if
there
are no changes: that cascades to recompiling the module, checking the


style


again, making a new archive and then recompiling the dependant modules
aso...
That was fixed a few months ago with

   https://github.com/codehaus-plexus/modello/pull/116

Would it be possible to release modello to be able to incorporate the
fix
and continue the work on optimization the build ?

I'm willing to help in any way if that can actually speed up things...

Cheers,
Guillaume


-
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 Maven Site Plugin version 3.11.0

2022-02-13 Thread Hervé BOUTEMY
+1

Reproducible Build ok: reference done with JDK 8 on Windows

Regards,

Hervé

Le dimanche 13 février 2022, 12:37:50 CET Michael Osipov a écrit :
> Hi,
> 
> We solved 4 issues:
> https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12317923
> rsion=12351142
> 
> There are still a couple of issues left in JIRA:
> https://issues.apache.org/jira/issues/?jql=project%20%3D%20MSITE%20AND%20res
> olution%20%3D%20Unresolved
> 
> Staging repo:
> https://repository.apache.org/content/repositories/maven-1713/
> https://repository.apache.org/content/repositories/maven-1713/org/apache/mav
> en/plugins/maven-site-plugin/3.11.0/maven-site-plugin-3.11.0-source-release.
> zip
> 
> Source release checksum(s):
> maven-site-plugin-3.11.0-source-release.zip
> sha512:
> 8c0195a722cf966b6f7107525662d71c89c0150ff4e2a861daa469e118eced2a8a9d46ddf5a9
> 725d3839982f723a1a7740d085c77b0d4e3cf2d8c8060264310f
> 
> Staging site:
> https://maven.apache.org/plugins-archives/maven-site-plugin-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





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



Re: [DISCUSS] Modello release

2022-02-13 Thread Hervé BOUTEMY
I did it, but I'm not convinced by the result

if someone knows how to do better, please help :)

Regards,

Hervé

Le dimanche 13 février 2022, 15:54:08 CET Slawomir Jaranowski a écrit :
> Hi,
> 
> Hervé can you add release notes?
> You should have a option "Auto-generate release notes." on tag
> https://github.com/codehaus-plexus/modello/releases/tag/modello-2.0.0
> 
> 
> niedz., 13 lut 2022 o 15:42 Hervé BOUTEMY 
> 
> napisał(a):
> > Modello 2.0.0 released
> > 
> > https://codehaus-plexus.github.io/modello/
> > 
> > Regards,
> > 
> > Hervé
> > 
> > Le lundi 31 janvier 2022, 08:30:08 CET Guillaume Nodet a écrit :
> > > I was looking at why the maven builds are a bit slow and found out one
> > > of
> > > the culprit is modello which overwrites its generated files even if
> > > there
> > > are no changes: that cascades to recompiling the module, checking the
> > 
> > style
> > 
> > > again, making a new archive and then recompiling the dependant modules
> > > aso...
> > > That was fixed a few months ago with
> > > 
> > >   https://github.com/codehaus-plexus/modello/pull/116
> > > 
> > > Would it be possible to release modello to be able to incorporate the
> > > fix
> > > and continue the work on optimization the build ?
> > > 
> > > I'm willing to help in any way if that can actually speed up things...
> > > 
> > > Cheers,
> > > Guillaume
> > 
> > -
> > 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: [DISCUSS] Modello release

2022-02-13 Thread Slawomir Jaranowski
Hi,

Hervé can you add release notes?
You should have a option "Auto-generate release notes." on tag
https://github.com/codehaus-plexus/modello/releases/tag/modello-2.0.0


niedz., 13 lut 2022 o 15:42 Hervé BOUTEMY 
napisał(a):

> Modello 2.0.0 released
>
> https://codehaus-plexus.github.io/modello/
>
> Regards,
>
> Hervé
>
> Le lundi 31 janvier 2022, 08:30:08 CET Guillaume Nodet a écrit :
> > I was looking at why the maven builds are a bit slow and found out one of
> > the culprit is modello which overwrites its generated files even if there
> > are no changes: that cascades to recompiling the module, checking the
> style
> > again, making a new archive and then recompiling the dependant modules
> > aso...
> > That was fixed a few months ago with
> >   https://github.com/codehaus-plexus/modello/pull/116
> > Would it be possible to release modello to be able to incorporate the fix
> > and continue the work on optimization the build ?
> >
> > I'm willing to help in any way if that can actually speed up things...
> >
> > Cheers,
> > Guillaume
>
>
>
>
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
> For additional commands, e-mail: dev-h...@maven.apache.org
>
>

-- 
Sławomir Jaranowski


Re: [DISCUSS] Modello release

2022-02-13 Thread Hervé BOUTEMY
Modello 2.0.0 released

https://codehaus-plexus.github.io/modello/

Regards,

Hervé

Le lundi 31 janvier 2022, 08:30:08 CET Guillaume Nodet a écrit :
> I was looking at why the maven builds are a bit slow and found out one of
> the culprit is modello which overwrites its generated files even if there
> are no changes: that cascades to recompiling the module, checking the style
> again, making a new archive and then recompiling the dependant modules
> aso...
> That was fixed a few months ago with
>   https://github.com/codehaus-plexus/modello/pull/116
> Would it be possible to release modello to be able to incorporate the fix
> and continue the work on optimization the build ?
> 
> I'm willing to help in any way if that can actually speed up things...
> 
> Cheers,
> Guillaume





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



[VOTE] Release Maven Site Plugin version 3.11.0

2022-02-13 Thread Michael Osipov

Hi,

We solved 4 issues:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12317923=12351142

There are still a couple of issues left in JIRA:
https://issues.apache.org/jira/issues/?jql=project%20%3D%20MSITE%20AND%20resolution%20%3D%20Unresolved

Staging repo:
https://repository.apache.org/content/repositories/maven-1713/
https://repository.apache.org/content/repositories/maven-1713/org/apache/maven/plugins/maven-site-plugin/3.11.0/maven-site-plugin-3.11.0-source-release.zip

Source release checksum(s):
maven-site-plugin-3.11.0-source-release.zip
sha512: 
8c0195a722cf966b6f7107525662d71c89c0150ff4e2a861daa469e118eced2a8a9d46ddf5a9725d3839982f723a1a7740d085c77b0d4e3cf2d8c8060264310f


Staging site:
https://maven.apache.org/plugins-archives/maven-site-plugin-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



[ANN] Apache Maven Reporting Exec version 1.6.0 released

2022-02-13 Thread Michael Osipov
The Apache Maven team is pleased to announce the release of the Maven 
Reporting Exec version 1.6.0.


https://maven.apache.org/shared/maven-reporting-exec/


Release Notes - Maven Shared Components - Version maven-reporting-exec-1.6.0

** Bug
* [MSHARED-927] - javadoc failing with JDK 8

** Task
* [MSHARED-1029] - Update component (requires Maven 3.2.5+)

** Dependency upgrade
* [MSHARED-1025] - Upgrade Doxia Sitetools to 1.11.1
* [MSHARED-1026] - Upgrade Maven Reporting API to 3.1.0
* [MSHARED-1034] - Upgrade plugins and components in ITs


Enjoy,

-The Apache Maven team

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



[RESULT] [VOTE] Release Apache Maven Reporting Exec version 1.6.0

2022-02-13 Thread Michael Osipov

Hi,

The vote has passed with the following result:

+1: Michael Osipov, Olivier Lamy, Hervé Boutemy, Tamás Cservenák, Romain 
Manni-Bucau, Tibor Digana


PMC quorum: reached

I will promote the artifacts to the central repo, the source release ZIP 
file

and add this release the board report.


[CANCELED] [VOTE] Release Maven Indexer 6.1.0

2022-02-13 Thread Tamás Cservenák
Howdy,

The vote on Maven Indexer release of version 6.1.0 has been CANCELED,
due issues happened during release and issues discovered post release.

Upcoming fixed release will be 6.1.1.

Thanks
T