16 lines
452 B
Groovy
16 lines
452 B
Groovy
description = 'Integration for javax.cache into Hibernate as a second-level caching service'
|
|
|
|
apply from: rootProject.file( 'gradle/published-java-module.gradle' )
|
|
|
|
|
|
dependencies {
|
|
implementation project( ':hibernate-core' )
|
|
implementation libraries.jcache
|
|
|
|
testImplementation project( ':hibernate-testing' )
|
|
testImplementation libraries.mockito
|
|
testImplementation libraries.mockito_inline
|
|
|
|
testRuntimeOnly libraries.ehcache3
|
|
}
|