hibernate-orm/hibernate-testing/hibernate-testing.gradle

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

50 lines
1.2 KiB
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>.
*/
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
2024-12-01 07:37:51 -05:00
api testLibs.hamcrest
api testLibs.assertjCore
api testLibs.mockito
api testLibs.bytemanBmunit
api( testLibs.jbossTxSpi ) {
2024-12-01 07:37:51 -05:00
transitive=false
}
api( testLibs.jbossJta ) {
2024-12-01 07:37:51 -05:00
transitive=false
}
2024-12-01 07:37:51 -05:00
api 'javax.money:money-api:1.1'
api ( 'org.javamoney.moneta:moneta-core:1.4.4' ) {
transitive = false
}
api testLibs.log4j2
2024-04-03 23:18:20 -04:00
implementation libs.hibernateModels
implementation libs.jandex
implementation testLibs.wildFlyTxnClient
implementation testLibs.junit5Engine
implementation testLibs.junit5Launcher
annotationProcessor project( ':hibernate-processor' )
}