To avoid any complications with functional changes between Hibernate 5 and Hibernate 6, this uses the hibernate-core-jakarta v5 module rather than hibernate-core v6. This requires a specific dependency exclusion in spring-webflow.gradle to make sure that hibernate-entitymanager never causes both versions to be loaded. This can be simplified after eventual adoption of Hibernate 6. The Spring snapshot repository needs to be referenced in build.gradle for this early stage work on SWF 3.
16 lines
523 B
Groovy
16 lines
523 B
Groovy
description = "Spring Binding"
|
|
|
|
dependencies {
|
|
implementation("org.springframework:spring-context")
|
|
|
|
compileOnly("jakarta.el:jakarta.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")
|
|
}
|