2015-05-19 00:23:35 -04: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-10 16:06:58 -05:00
|
|
|
|
|
|
|
description = 'Integration for c3p0 Connection pooling into Hibernate ORM'
|
|
|
|
|
2020-04-06 13:21:11 -04:00
|
|
|
apply from: rootProject.file( 'gradle/published-java-module.gradle' )
|
|
|
|
|
2010-10-09 14:27:47 -04:00
|
|
|
dependencies {
|
2021-05-14 15:59:59 -04:00
|
|
|
implementation project( ':hibernate-core' )
|
2022-04-26 15:40:08 -04:00
|
|
|
implementation libs.c3p0
|
2015-07-29 09:56:59 -04:00
|
|
|
|
2022-04-22 19:40:06 -04:00
|
|
|
testImplementation project( ':hibernate-testing' )
|
|
|
|
testImplementation libs.validator
|
|
|
|
testRuntimeOnly jakartaLibs.el
|
2013-01-23 18:22:03 -05:00
|
|
|
}
|
|
|
|
|