Re: Maven 4

2021-02-16 Thread Delany
Hi Maarten, Could Maven 4 be made available via the wrapper? Isn't this the preferred method of switching versions? Thanks, Delany On Tue, 16 Feb 2021 at 09:37, Maarten Mulders wrote: > Hi Alexander, > > Regardless of how you do it, please know that all options will give you > a snapshot of

Re: Maven 4

2021-02-16 Thread Tamás Cservenák
Of released ones, yes, as wrapper (by default) will go to Maven Central to get binary... T On Tue, Feb 16, 2021 at 9:17 AM Delany wrote: > Hi Maarten, > > Could Maven 4 be made available via the wrapper? > Isn't this the preferred method of switching versions? > > Thanks, > Delany > > On Tue,

Maven surefire plugin: parallel configuration not running tests in parallel

2021-02-16 Thread Jay Crosley
I’m trying to get junit5 tests to run in parallel using the maven surefire plugin, as described on https://maven.apache.org/surefire/maven-surefire-plugin/examples/fork-options-and-parallel-execution.html. Despite configuration that looks correct, I can’t get them to run in parallel. I’ll

Re: Maven surefire plugin: parallel configuration not running tests in parallel

2021-02-16 Thread Laird Nelson
JUnit5 does this in a strange way and they don't make it obvious. Try a recipe like this: maven-surefire-plugin junit.jupiter.execution.parallel.enabled=true junit.jupiter.execution.parallel.mode.default=concurrent Best, Laird On

Re: Maven surefire plugin: parallel configuration not running tests in parallel

2021-02-16 Thread Jay Crosley
Thank you. That looked promising but alas, I get the same result. I tried those with and without the other surefire configurations for running parallel tests. I also tried (from browsing the web) the maven-failsafe-plugin with the various configurations and get the same result with that too.

Re: Maven surefire plugin: parallel configuration not running tests in parallel

2021-02-16 Thread Laird Nelson
On Tue, Feb 16, 2021 at 4:00 PM Jay Crosley wrote: > Thank you. That looked promising but alas, I get the same result. I tried > those with and without the other surefire configurations for running > parallel tests. I also tried (from browsing the web) the > maven-failsafe-plugin with the

Re: Maven surefire plugin: parallel configuration not running tests in parallel

2021-02-16 Thread Jay Crosley
I take it back, the maven-failsafe-plugin works with the junit configuration options you suggested. That was the one combination I hadn’t tried. Woo hoo! From: Laird Nelson Date: Tuesday, February 16, 2021 at 4:01 PM To: Maven Users List Subject: Re: Maven surefire plugin: parallel

Re: Maven surefire plugin: parallel configuration not running tests in parallel

2021-02-16 Thread Laird Nelson
On Tue, Feb 16, 2021 at 4:18 PM Jay Crosley wrote: > I take it back, the maven-failsafe-plugin works with the junit > configuration options you suggested. That was the one combination I hadn’t > tried. Woo hoo! > I should have mentioned: there are no other configuration settings necessary.