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
|
|
|
|
2020-04-06 13:21:11 -04:00
|
|
|
description = 'Support for testing Hibernate ORM functionality'
|
|
|
|
|
2024-10-17 10:22:37 -04:00
|
|
|
apply from: rootProject.file( 'gradle/relocated-published-java-module.gradle' )
|
2018-01-10 16:06:58 -05:00
|
|
|
|
2013-11-26 18:48:09 -05:00
|
|
|
dependencies {
|
2021-05-14 15:59:59 -04:00
|
|
|
api project( ':hibernate-core' )
|
2022-12-05 06:29:48 -05:00
|
|
|
api project( ':hibernate-community-dialects' )
|
2021-05-14 15:59:59 -04:00
|
|
|
|
2022-04-22 19:40:06 -04:00
|
|
|
api testLibs.junit4
|
|
|
|
api testLibs.junit5Api
|
|
|
|
api testLibs.junit5Params
|
2021-09-22 18:52:06 -04:00
|
|
|
|
2021-05-14 15:59:59 -04:00
|
|
|
api 'org.hamcrest:hamcrest-all:1.3'
|
2022-04-22 19:40:06 -04:00
|
|
|
api testLibs.assertjCore
|
2021-09-22 18:52:06 -04:00
|
|
|
|
2022-04-22 19:40:06 -04:00
|
|
|
api testLibs.mockito
|
|
|
|
api testLibs.mockitoInline
|
2021-09-22 18:52:06 -04:00
|
|
|
|
2022-04-22 19:40:06 -04:00
|
|
|
api testLibs.byteman
|
|
|
|
api testLibs.bytemanInstall
|
|
|
|
api testLibs.bytemanBmunit
|
2021-05-14 15:59:59 -04:00
|
|
|
|
2022-04-22 19:40:06 -04:00
|
|
|
api testLibs.xapool
|
|
|
|
api( testLibs.jbossTxSpi ) {
|
2021-04-22 12:15:45 -04:00
|
|
|
transitive=false;
|
|
|
|
}
|
2022-04-22 19:40:06 -04:00
|
|
|
api( testLibs.jbossJta ) {
|
2021-05-14 15:59:59 -04:00
|
|
|
transitive=false;
|
2013-11-26 18:48:09 -05:00
|
|
|
}
|
2019-06-05 15:33:21 -04:00
|
|
|
|
2021-05-14 15:59:59 -04:00
|
|
|
api 'javax.money:money-api:1.0.1'
|
|
|
|
api 'org.javamoney:moneta:1.1'
|
2019-06-05 15:33:21 -04:00
|
|
|
|
2022-04-22 19:40:06 -04:00
|
|
|
api testLibs.log4j2
|
2021-09-22 18:52:06 -04:00
|
|
|
|
2024-04-03 23:18:20 -04:00
|
|
|
implementation libs.hibernateModels
|
2022-04-22 19:40:06 -04:00
|
|
|
implementation libs.jandex
|
|
|
|
implementation testLibs.wildFlyTxnClient
|
2024-04-05 10:34:11 -04:00
|
|
|
implementation testLibs.junit5Engine
|
|
|
|
implementation testLibs.junit5Launcher
|
2023-01-30 11:34:42 -05:00
|
|
|
|
2024-03-19 08:16:21 -04:00
|
|
|
annotationProcessor project( ':hibernate-processor' )
|
2013-11-26 18:48:09 -05:00
|
|
|
}
|
|
|
|
|