HHH-12190 - General tidying of Gradle scripts

- fixed missing dependency hibernate-vibur
This commit is contained in:
Steve Ebersole 2018-01-16 16:14:11 -06:00
parent 84f8b1d479
commit 762092cee1
1 changed files with 2 additions and 1 deletions

View File

@ -12,8 +12,9 @@ description = 'Integration for Vibur Connection pooling as a Hibernate ORM Conne
dependencies {
compile project( ':hibernate-core' )
compile( libraries.vibur )
testCompile( 'com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:1.4.2' )
testCompile( 'org.vibur:vibur-dbcp:21.2:tests' )
testCompile( 'com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:1.4.2' )
testCompile project( ':hibernate-testing' )
testCompile( libraries.mockito )
}