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' )
|
2022-04-26 15:40:08 -04:00
|
|
|
api libs.jcache
|
2014-03-19 21:43:42 -04:00
|
|
|
|
2021-05-14 15:59:59 -04:00
|
|
|
testImplementation project( ':hibernate-testing' )
|
|
|
|
|
2022-04-22 19:40:06 -04:00
|
|
|
testRuntimeOnly(libs.ehcache3) {
|
2021-11-16 11:15:58 -05:00
|
|
|
capabilities {
|
|
|
|
requireCapability 'org.ehcache.modules:ehcache-xml-jakarta'
|
|
|
|
}
|
|
|
|
}
|
2014-03-19 21:43:42 -04:00
|
|
|
}
|