[JAVA-1670] Upgraded JUnit and Maven Surefire Plugin in spring-boot-m… (#9509)

* [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
This commit is contained in:
François Dupire 2020-06-30 18:55:30 +02:00 committed by GitHub
parent a135fa0998
commit 1ff6672223
2 changed files with 22 additions and 5 deletions

View File

@ -2,15 +2,18 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<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>
<parent>
<groupId>com.baeldung</groupId>
<artifactId>parent-modules</artifactId>
<version>1.0.0-SNAPSHOT</version>
<artifactId>parent-boot-2</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../parent-boot-2</relativePath>
</parent>
<modules>
@ -60,4 +63,17 @@
<module>spring-boot-actuator</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.2</version>
</plugin>
</plugins>
</build>
<properties>
<junit-jupiter.version>5.6.2</junit-jupiter.version>
</properties>
</project>

View File

@ -8,9 +8,10 @@
<name>spring-boot-camel</name>
<parent>
<groupId>com.baeldung.spring-boot-modules</groupId>
<artifactId>spring-boot-modules</artifactId>
<version>1.0.0-SNAPSHOT</version>
<groupId>com.baeldung</groupId>
<artifactId>parent-boot-1</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../../parent-boot-1</relativePath>
</parent>
<dependencies>