Update dependency configurations for compatibility with Gradle 7.0

This commit is contained in:
Ian Young
2021-12-23 20:44:05 +00:00
committed by rstoyanchev
parent 3df089c234
commit 65a9c42207
3 changed files with 46 additions and 46 deletions

View File

@@ -1,15 +1,15 @@
description = "Spring Binding"
dependencies {
compile("org.springframework:spring-context")
implementation("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")
}
testImplementation("org.junit.jupiter:junit-jupiter")
testImplementation("org.hamcrest:hamcrest")
testImplementation("org.easymock:easymock")
testImplementation("org.apache.tomcat:tomcat-jasper-el")
testRuntimeOnly("org.apache.logging.log4j:log4j-core")
testRuntimeOnly("org.apache.logging.log4j:log4j-slf4j-impl")
testRuntimeOnly("org.apache.logging.log4j:log4j-jul")
}