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