From b84b0e237b454a6ec18f5edcfed57298e26b73fb Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Fri, 8 May 2015 18:33:55 +0200 Subject: [PATCH] Delete spring-context's dependency on spring-beans-groovy Commit 5648fbfc3155ddf4ead7388cfd7bc9e90b86f9d8 introduced a compile-time dependency on spring-beans-groovy in the spring-context module which breaks the build on the CI server since the Animal Sniffer task cannot find a JAR file for spring-beans-groovy. This commit reverts that change so that the "sniffer" task once again succeeds. --- build.gradle | 1 - 1 file changed, 1 deletion(-) diff --git a/build.gradle b/build.gradle index 124abfdee3..6058893b55 100644 --- a/build.gradle +++ b/build.gradle @@ -455,7 +455,6 @@ project("spring-context") { dependencies { compile(project(":spring-aop")) compile(project(":spring-beans")) - compile(project(":spring-beans-groovy")) compile(project(":spring-expression")) compile(project(":spring-core")) compile(files(project(":spring-core").cglibRepackJar))