Delete spring-context's dependency on spring-beans-groovy

Commit 5648fbfc31 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.
master
Sam Brannen 10 years ago
parent 04d6afe54d
commit b84b0e237b
  1. 1
      build.gradle

@ -455,7 +455,6 @@ project("spring-context") {
dependencies { dependencies {
compile(project(":spring-aop")) compile(project(":spring-aop"))
compile(project(":spring-beans")) compile(project(":spring-beans"))
compile(project(":spring-beans-groovy"))
compile(project(":spring-expression")) compile(project(":spring-expression"))
compile(project(":spring-core")) compile(project(":spring-core"))
compile(files(project(":spring-core").cglibRepackJar)) compile(files(project(":spring-core").cglibRepackJar))

Loading…
Cancel
Save