50 lines
1.2 KiB
Groovy
50 lines
1.2 KiB
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>.
|
|
*/
|
|
|
|
description = 'Support for testing Hibernate ORM functionality'
|
|
|
|
apply from: rootProject.file( 'gradle/relocated-published-java-module.gradle' )
|
|
|
|
dependencies {
|
|
api project( ':hibernate-core' )
|
|
api project( ':hibernate-community-dialects' )
|
|
|
|
api testLibs.junit4
|
|
api testLibs.junit5Api
|
|
api testLibs.junit5Params
|
|
|
|
api testLibs.hamcrest
|
|
api testLibs.assertjCore
|
|
|
|
api testLibs.mockito
|
|
|
|
api testLibs.bytemanBmunit
|
|
|
|
api( testLibs.jbossTxSpi ) {
|
|
transitive=false
|
|
}
|
|
api( testLibs.jbossJta ) {
|
|
transitive=false
|
|
}
|
|
|
|
api 'javax.money:money-api:1.1'
|
|
api ( 'org.javamoney.moneta:moneta-core:1.4.4' ) {
|
|
transitive = false
|
|
}
|
|
|
|
api testLibs.log4j2
|
|
|
|
implementation libs.hibernateModels
|
|
implementation libs.jandex
|
|
implementation testLibs.wildFlyTxnClient
|
|
implementation testLibs.junit5Engine
|
|
implementation testLibs.junit5Launcher
|
|
|
|
annotationProcessor project( ':hibernate-processor' )
|
|
}
|
|
|