[LAZY][VOTE] Release Apache Commons Parent 67 based on RC1

2024-03-01 Thread Gary Gregory
We have fixed a few bugs and added enhancements since Apache Commons Parent 66 was released, so I would like to release Apache Commons Parent 67. Apache Commons Parent 67 RC1 is available for review here: https://dist.apache.org/repos/dist/dev/commons/parent/67-RC1 (svn revision 67659) The

Re: [VOTE] Release Apache Commons DBCP 2.12.0 based on RC1

2024-03-01 Thread Gary Gregory
My +1 Gary On Thu, Feb 29, 2024 at 5:46 PM Gary Gregory wrote: > > Hi All, > > We have fixed a few bugs and added some enhancements since Apache > Commons DBCP 2.11.0 was released, so I would like to release Apache > Commons DBCP 2.12.0. > > Apache Commons DBCP 2.12.0 RC1 is available for

Re: [LOGGING] 2.0

2024-03-01 Thread Ralph Goers
> On Feb 13, 2024, at 3:39 AM, Piotr P. Karwasz wrote: > > If such a thing is even possible, it would be nice if we can get > `jakarta.logging` as the package prefix. Creating a Jakarta logging would certainly be possible. I am not certain if that follows the JCP process though since

Re: [Net] JUnit 5 migration discussion

2024-03-01 Thread Elric V
On 01/03/2024 16:53, Rob Spoor wrote: You can turn the current parameterized test into an abstract base class; you can even nest it in another class. Then for each set of parameters you use an @Nested sub class that fills in the parameters in the call to its super constructor. Thanks Rob &

Re: [Net] JUnit 5 migration discussion

2024-03-01 Thread Rob Spoor
Inheriting test methods and @BeforeEach / @AfterEach methods works just fine. I even have a project that provides interfaces with default test methods. Just implementing these interfaces gives classes all of the test methods. If you override methods, you have to repeat the annotation though. I