[JAVA-1670] Upgrade JUnit and Maven Surefire Plugin in spring-boot-modules - Changed sub-modules inheritance (first batch) (#9629)

* [JAVA-1670] Upgraded JUnit and Maven Surefire Plugin in spring-boot-modules

* Upgraded Maven Surefire Plugin version to 2.22.2

* Upgraded JUnit version to 5.6.2

* [JAVA-1670] Phasing upgrade - Inheriting form parent-boot-2

* Reverted JUnit version upgrade for now (will focus on parent/child relationships first)

* Changed parent pom of spring-boot-modules to parent-boot-2

* Upgraded JUnit version to 5.6.2 in spring-boot-modules

* [JAVA-1670] Phasing upgrade - Inheriting from spring-boot-modules instead of parent-boot-2 (first batch)

* Changed spring-boot parent

* Changed spring-boot-admin

* Deleted exclusions in spring-boot

* Changed spring-boot-angular

* Changed spring-boot-annotations

* Changed spring-boot-artifacts

* Changed spring-boot-autoconfiguration

* Changed spring-boot-basic-customization

* Changed spring-boot-bootstrap

* Changed spring-boot-client

* Changed spring-boot-config-jpa-error

* Changed spring-boot-ctx-fluent

* Changed spring-boot-deployment

* Changed spring-boot-di

* Changed spring-boot-ci-cd

* Changed spring-boot-custom-starter

* Changed spring-boot-crud

* Changed spring-boot-data

* Changed spring-boot-environment

* Changed spring-boot-exceptions

* Changed spring-boot-flowable

* Changed spring-boot-jasypt

* Changed spring-boot-keycloak
This commit is contained in:
François Dupire
2020-07-03 10:51:51 +02:00
committed by GitHub
parent 3d220068f3
commit c946569125
26 changed files with 245 additions and 230 deletions
+15 -1
View File
@@ -6,9 +6,10 @@
<groupId>com.baeldung.spring-boot-modules</groupId>
<artifactId>spring-boot-modules</artifactId>
<version>1.0.0-SNAPSHOT</version>
<name>spring-boot-modules</name>
<packaging>pom</packaging>
<name>spring-boot-modules</name>
<parent>
<groupId>com.baeldung</groupId>
<artifactId>parent-boot-2</artifactId>
@@ -73,6 +74,19 @@
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
<junit-jupiter.version>5.6.2</junit-jupiter.version>
</properties>