File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed
plugin/src/docs/code/s2-quickstart Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,13 @@ dependencies {
4343 implementation " org.grails.plugins:async"
4444 implementation " org.grails.plugins:scaffolding"
4545 implementation " org.grails.plugins:hibernate5"
46- implementation " org.hibernate:hibernate-core:5.6.15.Final"
46+ runtimeOnly " org.hibernate:hibernate-ehcache:$hibernateVersion " , {
47+ // exclude javax variant of hibernate-core
48+ exclude group : ' org.hibernate' , module : ' hibernate-core'
49+ }
50+ runtimeOnly " org.jboss.spec.javax.transaction:jboss-transaction-api_1.3_spec:$jbossTransactionApiVersion " , {
51+ // required for hibernate-ehcache to work with javax variant of hibernate-core excluded
52+ }
4753 implementation " org.grails.plugins:events"
4854 implementation " org.grails.plugins:gsp"
4955 profile " org.grails.profiles:web"
Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ grailsVersion=5.2.5
22grailsGradlePluginVersion =6.1.2
33groovyVersion =3.0.11
44gorm.version =7.3.2
5+ hibernateVersion =5.6.15.Final
6+ jbossTransactionApiVersion =2.0.0.Final
57org.gradle.daemon =true
68org.gradle.parallel =true
79org.gradle.jvmargs =-Dfile.encoding =UTF-8 -Xmx1024M
You can’t perform that action at this time.
0 commit comments