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

These are potential issues, since the dependency is included in the root pom
This commit is contained in:
Gerardo Roza 2021-01-13 10:26:38 -03:00
parent 0de3237365
commit 1a0655a189
1 changed files with 11 additions and 0 deletions

View File

@ -39,6 +39,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</groupId>
<artifactId>spring-core</artifactId>