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
This commit is contained in:
Sam Brannen 2012-05-11 17:33:53 +02:00
parent 816c1f47a4
commit e8392f83c9
1 changed files with 2 additions and 2 deletions

View File

@ -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"
}