<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> <exclusions> <exclusion> <!-- JUnit updates to version 5 since springboot 2.2--> <groupId>JUnit</groupId> <artifactId>JUnit</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.JUnit.jupiter</groupId> <artifactId>JUnit-jupiter</artifactId> <version>5.6.2</version> <scope>test</scope> </dependency>
<plugin> <!-- unit test: Need at least 2.22.0 to support JUnit 5 --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.2</version> </plugin>