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

11 lines
270 B
Groovy
Raw Normal View History

apply plugin: 'java'
dependencies {
compile( project( ':hibernate-core' ) )
compile( [group: 'net.sf.ehcache', name: 'ehcache-core', version: '2.4.1', ext: 'jar'] )
2011-03-07 17:20:53 -05:00
testCompile( project(':hibernate-testing') )
}
// temporary
test {
ignoreFailures = true
2011-05-09 11:06:45 -04:00
}