2017-09-05 19:49:17 -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>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
description = 'Integration for Agroal as a ConnectionProvider for Hibernate ORM'
|
|
|
|
|
2020-04-06 13:21:11 -04:00
|
|
|
apply from: rootProject.file( 'gradle/published-java-module.gradle' )
|
|
|
|
|
2017-09-05 19:49:17 -04:00
|
|
|
dependencies {
|
|
|
|
compile project( ':hibernate-core' )
|
|
|
|
compile( libraries.agroal_api )
|
2018-02-15 13:06:01 -05:00
|
|
|
|
2017-09-05 19:49:17 -04:00
|
|
|
runtime( libraries.agroal_pool )
|
2018-02-15 13:06:01 -05:00
|
|
|
|
2017-09-05 19:49:17 -04:00
|
|
|
testCompile project( ':hibernate-testing' )
|
2018-07-10 10:51:55 -04:00
|
|
|
testCompile( libraries.mockito )
|
|
|
|
testCompile( libraries.mockito_inline )
|
2017-09-05 19:49:17 -04:00
|
|
|
}
|