hibernate-orm/hibernate-ehcache/hibernate-ehcache.gradle

12 lines
326 B
Groovy

apply plugin: 'java'
dependencies {
compile( project( ':hibernate-core' ) )
compile( [group: 'net.sf.ehcache', name: 'ehcache-core', version: '2.4.1'] )
testCompile( project(':hibernate-testing') )
testRuntime( [group: 'org.slf4j', name: 'slf4j-simple', version: '1.6.1'] )
}
test {
ignoreFailures = true
}