hibernate-orm/hibernate-c3p0/hibernate-c3p0.gradle

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
647 B
Groovy
Raw Normal View History

/*
* 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>.
*/
2024-12-26 18:10:53 -06:00
plugins {
id "local.publishing-java-module"
id "local.publishing-group-relocation"
}
2024-12-26 18:10:53 -06:00
description = 'Integration for c3p0 Connection pooling into Hibernate ORM'
dependencies {
implementation project( ':hibernate-core' )
implementation libs.c3p0
testImplementation project( ':hibernate-testing' )
2024-12-02 09:30:51 +01:00
testImplementation jakartaLibs.validation
testImplementation testLibs.validator
2013-01-23 18:22:03 -05:00
}