2020-04-06 13:21:11 -04:00
|
|
|
description = 'Integration for javax.cache into Hibernate as a second-level caching service'
|
|
|
|
|
2018-01-10 16:06:58 -05:00
|
|
|
apply from: rootProject.file( 'gradle/published-java-module.gradle' )
|
|
|
|
|
|
|
|
|
2014-03-19 21:43:42 -04:00
|
|
|
dependencies {
|
2021-11-16 11:15:58 -05:00
|
|
|
api project( ':hibernate-core' )
|
|
|
|
api libraries.jcache
|
2014-03-19 21:43:42 -04:00
|
|
|
|
2021-05-14 15:59:59 -04:00
|
|
|
testImplementation project( ':hibernate-testing' )
|
|
|
|
testImplementation libraries.mockito
|
|
|
|
testImplementation libraries.mockito_inline
|
|
|
|
|
2021-11-16 11:15:58 -05:00
|
|
|
testRuntimeOnly(libraries.ehcache3) {
|
|
|
|
capabilities {
|
|
|
|
requireCapability 'org.ehcache.modules:ehcache-xml-jakarta'
|
|
|
|
}
|
|
|
|
}
|
2014-03-19 21:43:42 -04:00
|
|
|
}
|