Upgrade to JUnit 4.10

Spring currently builds against JUnit 4.9; however, in order to ensure
that the Spring TestContext Framework builds and runs against JUnit 4.10
without issues and in order to investigate the possibility of integrating
with newer JUnit features, we are upgrading to JUnit 4.10.

Issue: SPR-9277
master
Sam Brannen 13 years ago
parent 816c1f47a4
commit e8392f83c9
  1. 4
      build.gradle

@ -31,7 +31,7 @@ configure(allprojects) {
}
dependencies {
testCompile "junit:junit:4.9"
testCompile "junit:junit:4.10"
testCompile "org.easymock:easymock:2.5.1"
testCompile "org.hamcrest:hamcrest-all:1.1"
}
@ -425,7 +425,7 @@ project('spring-test') {
compile project(":spring-webmvc-portlet")
compile("javax.activation:activation:1.0", provided)
compile("org.testng:testng:5.10:jdk15", optional)
compile("junit:junit:4.9", optional)
compile("junit:junit:4.10", optional)
compile("javax.servlet:servlet-api:2.5", provided)
testCompile "org.slf4j:slf4j-jcl:1.5.3"
}

Loading…
Cancel
Save