23 lines
392 B
Groovy
23 lines
392 B
Groovy
dependencies {
|
|
compile project( ':hibernate-core' )
|
|
compile( libraries.ehcache )
|
|
|
|
testCompile project( ':hibernate-testing' )
|
|
}
|
|
|
|
def pomName() {
|
|
return 'Hibernate/Ehcache Integration'
|
|
}
|
|
|
|
def pomDescription() {
|
|
return 'Integration for Ehcache into Hibernate as a second-level caching service'
|
|
}
|
|
|
|
def osgiDescription() {
|
|
return pomDescription()
|
|
}
|
|
|
|
test {
|
|
forkEvery 1
|
|
}
|