diff options
Diffstat (limited to 'utils-test/pom.xml')
-rw-r--r-- | utils-test/pom.xml | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/utils-test/pom.xml b/utils-test/pom.xml index 1b00a698..a659062b 100644 --- a/utils-test/pom.xml +++ b/utils-test/pom.xml @@ -68,8 +68,8 @@ <scope>compile</scope> </dependency> <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> + <groupId>org.junit.jupiter</groupId> + <artifactId>junit-jupiter-api</artifactId> <scope>compile</scope> </dependency> <dependency> @@ -79,7 +79,7 @@ </dependency> <dependency> <groupId>org.mockito</groupId> - <artifactId>mockito-core</artifactId> + <artifactId>mockito-junit-jupiter</artifactId> <scope>test</scope> </dependency> <dependency> @@ -87,5 +87,11 @@ <artifactId>spring-test</artifactId> <scope>test</scope> </dependency> + <dependency> + <groupId>org.hamcrest</groupId> + <artifactId>hamcrest-core</artifactId> + <version>2.2</version> + <scope>compile</scope> + </dependency> </dependencies> </project> |