Remove global test dependency on Hamcrest

Hamcrest is now only used within spring-test for MockMvc support.
This commit is contained in:
Sam Brannen 2019-09-03 12:02:22 +02:00
parent bf758eab33
commit bb03cdf5d0
1 changed files with 0 additions and 2 deletions

View File

@ -340,7 +340,6 @@ configure([rootProject] + javaProjects) { project ->
testCompile("org.mockito:mockito-core")
testCompile("org.mockito:mockito-junit-jupiter")
testCompile("io.mockk:mockk")
testCompile("org.hamcrest:hamcrest")
testCompile("org.assertj:assertj-core")
// Pull in the latest JUnit 5 Launcher API to ensure proper support in IDEs.
testRuntime("org.junit.platform:junit-platform-launcher")
@ -415,4 +414,3 @@ configure(rootProject) {
}
}
}