HHH-6276 org.hibernate.test.cache.ehcache.EhCacheRegionFactoryImpl fails due to no slf4j in test configuration

This commit is contained in:
Strong Liu 2011-05-31 00:25:53 +08:00
parent debd342e48
commit 0f18069ecd
1 changed files with 3 additions and 6 deletions

View File

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