Use Spring dependency management plugin

This commit introduces the Spring dependency management Gradle
plugin. All dependency versions and BOMs are now managed in the
root project and declared in the modules directly.
This commit is contained in:
Brian Clozel
2020-04-30 15:04:26 +02:00
committed by Rossen Stoyanchev
parent e944eec255
commit 2f2c2e0313
4 changed files with 142 additions and 80 deletions

View File

@@ -1 +1,14 @@
description = "Spring Binding"
description = "Spring Binding"
dependencies {
compile("org.springframework:spring-context")
compileOnly("javax.el:javax.el-api")
testCompile("org.junit.jupiter:junit-jupiter")
testCompile("org.hamcrest:hamcrest")
testCompile("org.easymock:easymock")
testCompile("org.apache.tomcat:tomcat-jasper-el")
testRuntime("org.apache.logging.log4j:log4j-core")
testRuntime("org.apache.logging.log4j:log4j-slf4j-impl")
testRuntime("org.apache.logging.log4j:log4j-jul")
}