diff options
Diffstat (limited to 'aai-schema-ingest/pom.xml')
-rw-r--r-- | aai-schema-ingest/pom.xml | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/aai-schema-ingest/pom.xml b/aai-schema-ingest/pom.xml index ad2f9fcc..7193ebd9 100644 --- a/aai-schema-ingest/pom.xml +++ b/aai-schema-ingest/pom.xml @@ -138,9 +138,21 @@ limitations under the License. <artifactId>junit</artifactId> <scope>test</scope> </dependency> + <!-- TODO: Migrate tests to junit 5 and remove this 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.mockito</groupId> - <artifactId>mockito-all</artifactId> + <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> |