hibernate-orm/hibernate-jcache/hibernate-jcache.gradle
Alex Snaps a872885a43 HHH-10770 JCache 2nd-level cache
* Provider and CacheManager creation
* Caches creation
* Region class hierarchy
* Different access strategies
2016-05-31 23:55:23 -05:00

21 lines
446 B
Groovy

dependencies {
compile project( ':hibernate-core' )
compile( libraries.jcache )
testCompile project( ':hibernate-testing' )
testCompile( libraries.mockito )
testRuntime( libraries.ehcache3 )
}
def pomName() {
return 'Hibernate/JCache Integration'
}
def pomDescription() {
return 'Integration for javax.cache into Hibernate as a second-level caching service'
}
def osgiDescription() {
return pomDescription()
}