added junit-vintage-engine dependency to avoid issues with existing JUnit4 tests

This commit is contained in:
Gerardo Roza 2021-01-14 11:43:32 -03:00
parent 1ed7c56596
commit 1c5185b549
1 changed files with 11 additions and 0 deletions

View File

@ -33,6 +33,17 @@
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>