21 lines
446 B
Groovy
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()
|
|
}
|