2018-01-13 07:48:46 -05:00
|
|
|
/*
|
|
|
|
* Hibernate, Relational Persistence for Idiomatic Java
|
|
|
|
*
|
|
|
|
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
|
|
|
|
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
|
|
|
|
*/
|
2018-01-16 15:01:23 -05:00
|
|
|
|
2020-04-06 13:21:11 -04:00
|
|
|
description = 'Integration for Vibur Connection pooling as a Hibernate ORM ConnectionProvider'
|
|
|
|
|
2018-01-16 15:01:23 -05:00
|
|
|
apply from: rootProject.file( 'gradle/published-java-module.gradle' )
|
|
|
|
|
2018-01-13 07:48:46 -05:00
|
|
|
dependencies {
|
2021-05-14 15:59:59 -04:00
|
|
|
implementation project( ':hibernate-core' )
|
2022-04-26 15:40:08 -04:00
|
|
|
implementation libs.vibur
|
2018-01-16 15:01:23 -05:00
|
|
|
|
2021-05-14 15:59:59 -04:00
|
|
|
testImplementation project( ':hibernate-testing' )
|
2022-04-26 15:40:08 -04:00
|
|
|
testImplementation "org.vibur:vibur-dbcp:${libs.versions.vibur.get()}:tests"
|
2021-05-14 15:59:59 -04:00
|
|
|
testImplementation 'com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:1.4.2'
|
2018-01-13 07:48:46 -05:00
|
|
|
}
|
|
|
|
|