Re: [ANN]switch from maven to gradle

2022-06-16 Thread Manuel Dahmen
I think I will go back to Maven, too. I think Gradle is appropriate to Android development, but Maven uses an more explicit syntax with xml. Le mer. 15 juin 2022 à 20:05, John Patrick a écrit : > Looking at the Snyk Java/JVM ecosystem report 2018 vs 2021, the usage of > Maven is growing still.

How to properly override junit-platform and junit-jupiter in a parent pom

2022-06-16 Thread David Karr
We have a bunch of services running Spring Boot 2.3.12, which by default uses junit-platform 1.6.3 and junit-jupiter 5.6.3. We are trying to instead use junit-platform 1.8.2 and junit-jupiter 5.8.2. All the artifacts and versions we need are in junit-bom-5.8.2. We want to control this in our

Re: How to properly override junit-platform and junit-jupiter in a parent pom

2022-06-16 Thread Karl Heinz Marbaise
Hi, It's important to define the junit-bom import before the spring-boot-dependencies import part in dependencyManagement which assumes you don't use spring-boot-parent? Kind regards Karl Heinz Marbaise On 16.06.22 23:54, David Karr wrote: We have a bunch of services running Spring Boot

Re: How to properly override junit-platform and junit-jupiter in a parent pom

2022-06-16 Thread David Karr
If it matters, I see that in our parent bom artifact, we are importing "spring-boot-dependencies". On Thu, Jun 16, 2022 at 5:27 PM David Karr wrote: > Sorry, can you clarify exactly what you mean by that? > > On Thu, Jun 16, 2022 at 4:14 PM Karl Heinz Marbaise > wrote: > >> Hi, >> >> It's

Re: How to properly override junit-platform and junit-jupiter in a parent pom

2022-06-16 Thread David Karr
Sorry, can you clarify exactly what you mean by that? On Thu, Jun 16, 2022 at 4:14 PM Karl Heinz Marbaise wrote: > Hi, > > It's important to define the junit-bom import before the > spring-boot-dependencies import part in dependencyManagement which assumes > you don't use spring-boot-parent? >