-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Exclude hibernate-ehcache #955
Changes from 4 commits
8b1cc84
2ddbfff
89ccb91
85bf404
b00713a
285efe8
56964cf
eecb602
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,19 +21,6 @@ dependencies { | |
exclude group:'org.slf4j', module:'slf4j-api' | ||
} | ||
|
||
compileOnly "org.hibernate:hibernate-ehcache:$hibernateVersion", { | ||
exclude group:'commons-collections', module:'commons-collections' | ||
exclude group:'commons-logging', module:'commons-logging' | ||
exclude group:'com.h2database', module:'h2' | ||
exclude group:'net.sf.ehcache', module:'ehcache' | ||
exclude group:'net.sf.ehcache', module:'ehcache-core' | ||
exclude group:'org.hibernate', module:'hibernate-core' | ||
exclude group:'org.slf4j', module:'jcl-over-slf4j' | ||
exclude group:'org.slf4j', module:'slf4j-api' | ||
exclude group:'org.slf4j', module:'slf4j-log4j12' | ||
exclude group:'xml-apis', module:'xml-apis' | ||
} | ||
|
||
testImplementation "org.apache.groovy:groovy-test-junit5" | ||
testImplementation "org.apache.groovy:groovy-sql" | ||
testImplementation "org.apache.groovy:groovy-json" | ||
|
@@ -42,20 +29,17 @@ dependencies { | |
} | ||
testImplementation "com.h2database:h2" | ||
|
||
testImplementation "org.hibernate:hibernate-ehcache:$hibernateVersion" | ||
|
||
// groovy proxy fixes bytebuddy to be a bit smarter when it comes to groovy metaClass | ||
testImplementation "org.yakworks:hibernate-groovy-proxy:$yakworksHibernateGroovyProxyVersion", { | ||
exclude group: "org.codehaus.groovy", module: "groovy" | ||
} | ||
|
||
testImplementation "org.apache.tomcat:tomcat-jdbc" | ||
testRuntimeOnly "org.springframework:spring-aop" | ||
|
||
testRuntimeOnly "org.hibernate:hibernate-ehcache:$hibernateVersion" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add the following to document the right approach and avoid conflicts from the javax version?
|
||
testRuntimeOnly "org.slf4j:slf4j-simple" | ||
testRuntimeOnly "org.slf4j:jcl-over-slf4j" | ||
// The groovydoc task needs the Hibernate 4.x jars in the classpath | ||
documentation "org.hibernate:hibernate-core-jakarta:${hibernateVersion}" | ||
testRuntimeOnly "org.springframework:spring-aop" | ||
} | ||
|
||
test { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,6 @@ dependencies { | |
api "org.springframework.boot:spring-boot" | ||
api "org.springframework:spring-orm" | ||
api "org.hibernate:hibernate-core-jakarta:$hibernateVersion" | ||
api "org.hibernate:hibernate-ehcache:$hibernateVersion" | ||
api "org.grails:grails-datastore-web" | ||
api "org.grails:grails-datastore-gorm-support" | ||
api project(":grails-datastore-gorm-hibernate5"), { | ||
|
@@ -38,12 +37,15 @@ dependencies { | |
exclude group:'org.grails', module:'grails-core' | ||
exclude group:'javax.transaction', module:'jta' | ||
} | ||
testRuntimeOnly "org.yaml:snakeyaml" | ||
|
||
testImplementation "org.grails:grails-gorm-testing-support" | ||
|
||
testRuntimeOnly "com.h2database:h2" | ||
testRuntimeOnly "org.apache.tomcat:tomcat-jdbc" | ||
testRuntimeOnly "org.hibernate:hibernate-ehcache:$hibernateVersion" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add the following to document the right approach and avoid conflicts from the javax version?
|
||
testRuntimeOnly "org.springframework:spring-aop" | ||
testRuntimeOnly "org.springframework:spring-expression" | ||
testRuntimeOnly "org.yaml:snakeyaml" | ||
} | ||
|
||
groovydoc.classpath += configurations.documentation |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add the following to document the right approach and avoid conflicts from the javax version?