hibernate-orm/hibernate-testing/hibernate-testing.gradle
Gavin King 054aeff78b completely remove checkstyle and replace it with a simple regex check
This is ~ 2 orders of magnitude faster on my machine, so it can be
executed as part of the compileJava task. Also, it actually logs the
failures, instead of making me go hunt for them in some generated
HTML-based report.
2024-09-30 13:10:09 -05:00

52 lines
1.3 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/published-java-module.gradle' )
dependencies {
api project( ':hibernate-core' )
api project( ':hibernate-community-dialects' )
api testLibs.junit4
api testLibs.junit5Api
api testLibs.junit5Params
api 'org.hamcrest:hamcrest-all:1.3'
api testLibs.assertjCore
api testLibs.mockito
api testLibs.mockitoInline
api testLibs.byteman
api testLibs.bytemanInstall
api testLibs.bytemanBmunit
api testLibs.xapool
api( testLibs.jbossTxSpi ) {
transitive=false;
}
api( testLibs.jbossJta ) {
transitive=false;
}
api 'javax.money:money-api:1.0.1'
api 'org.javamoney:moneta:1.1'
api testLibs.log4j2
implementation libs.hibernateModels
implementation libs.jandex
implementation testLibs.wildFlyTxnClient
implementation testLibs.junit5Engine
implementation testLibs.junit5Launcher
annotationProcessor project( ':hibernate-processor' )
}