Files
spring-webflow/spring-binding/spring-binding.gradle
Rossen Stoyanchev 9fd8d3eccd Upgrade to Gradle 7.4.2 and use java-library plugin
Align with main branch
2022-08-03 13:26:36 +03:00

15 lines
518 B
Groovy

description = "Spring Binding"
dependencies {
implementation("org.springframework:spring-context")
compileOnly("javax.el:javax.el-api")
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")
}