Re: [VOTE] Release Apache Maven Eclipse Plugin version 2.10

2015-05-27 Thread Andreas Gudian
Here's my own +1. 2015-05-26 23:10 GMT+02:00 Hervé BOUTEMY herve.bout...@free.fr: +1 Regards, Hervé Le dimanche 24 mai 2015 22:04:52 Andreas Gudian a écrit : Hi, this will be the last Maven 2 compatible release of this plugin. We solved 9 issues:

Re: logging during multithreaded builds

2015-05-27 Thread Igor Fedorenko
So I went ahead and implemented these changes, including working (but not terribly well tested) logback appenders to buffer-and-group project console log messages and create per-project build.log files. Does anyone see a problem if I check in these appenders in maven core source tree or you

[RESULT] [VOTE] Release Apache Maven Eclipse Plugin version 2.10

2015-05-27 Thread Andreas Gudian
Hi, The vote has passed with the following result: +1 (binding): Karl Heinz Marbaise, Jason van Zyl, Hervé Boutemy +1 (non binding): Andreas Gudian Thank you guys for the votes! I will promote the artifacts to the central repo. 2015-05-27 21:44 GMT+02:00 Andreas Gudian

[ANN] Apache Maven Eclipse Plugin 2.10 Released

2015-05-27 Thread Andreas Gudian
The Apache Maven team is pleased to announce the release of the Apache Maven Eclipse Plugin, version 2.10 This plugin is used to generate Eclipse IDE files (*.classpath, *.project, *.wtpmodules and the .settings folder) for use with a project - if the M2E Eclipse-Plugin does not fit you. This

Re: logging during multithreaded builds

2015-05-27 Thread Igor Fedorenko
There are three semi-related parts to my implementation 1. SLF4J MDC management, basically setting and removing project attributes in a thread-local map. Truly reliable implementation will need to be coded in all Builders. Alternatively, it should be possible to use existing lifecycle callbacks

Re: logging during multithreaded builds

2015-05-27 Thread Jason van Zyl
I honestly don't think an optional feature relying on an optional dependency belongs in the core itself. On May 27, 2015, at 10:34 PM, Igor Fedorenko i...@ifedorenko.com wrote: There are three semi-related parts to my implementation 1. SLF4J MDC management, basically setting and removing

Re: logging during multithreaded builds

2015-05-27 Thread Jason van Zyl
On May 27, 2015, at 3:55 PM, Igor Fedorenko i...@ifedorenko.com wrote: So I went ahead and implemented these changes, including working (but not terribly well tested) logback appenders to buffer-and-group project console log messages and create per-project build.log files. What changes