added junit-vintage-engine dependency to avoid issues with existing JUnit4 tests for spring-boot module

This commit is contained in:
Gerardo Roza 2021-01-19 15:44:33 -03:00
parent 7e91f30534
commit 42ca93dbbf
1 changed files with 13 additions and 2 deletions

View File

@ -58,6 +58,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>io.dropwizard.metrics</groupId>