2018-01-10 16:06:58 -05:00
|
|
|
apply from: rootProject.file( 'gradle/published-java-module.gradle' )
|
|
|
|
|
|
|
|
description = 'Integration for javax.cache into Hibernate as a second-level caching service'
|
|
|
|
|
2014-03-19 21:43:42 -04:00
|
|
|
dependencies {
|
|
|
|
compile project( ':hibernate-core' )
|
|
|
|
compile( libraries.jcache )
|
|
|
|
|
|
|
|
testCompile project( ':hibernate-testing' )
|
|
|
|
testCompile( libraries.mockito )
|
2017-02-08 06:08:02 -05:00
|
|
|
testCompile( libraries.mockito_inline )
|
2014-03-19 21:43:42 -04:00
|
|
|
testRuntime( libraries.ehcache3 )
|
|
|
|
}
|