24 lines
647 B
Groovy
24 lines
647 B
Groovy
/*
|
|
* 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>.
|
|
*/
|
|
|
|
plugins {
|
|
id "local.publishing-java-module"
|
|
id "local.publishing-group-relocation"
|
|
}
|
|
|
|
description = 'Integration for c3p0 Connection pooling into Hibernate ORM'
|
|
|
|
dependencies {
|
|
implementation project( ':hibernate-core' )
|
|
implementation libs.c3p0
|
|
|
|
testImplementation project( ':hibernate-testing' )
|
|
testImplementation jakartaLibs.validation
|
|
testImplementation testLibs.validator
|
|
}
|
|
|