From e8392f83c9547affaf47a55ee70515e08ba0e585 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Fri, 11 May 2012 17:33:53 +0200 Subject: [PATCH] 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 --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 32d5ce3ef0..81c6a5c6be 100644 --- a/build.gradle +++ b/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" }