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 = 'Hibernate\'s entity version (audit/history) support'
|
|
|
|
|
2018-01-10 16:06:58 -05:00
|
|
|
apply from: rootProject.file( 'gradle/published-java-module.gradle' )
|
2021-07-14 12:44:35 -04:00
|
|
|
apply plugin: 'org.hibernate.matrix-test'
|
2010-10-09 14:24:27 -04:00
|
|
|
|
|
|
|
dependencies {
|
2021-07-27 20:38:44 -04:00
|
|
|
api project( ':hibernate-core' )
|
2019-12-13 06:29:40 -05:00
|
|
|
|
2024-05-23 14:42:12 -04:00
|
|
|
implementation libs.hibernateModels
|
2022-04-22 19:40:06 -04:00
|
|
|
implementation jakartaLibs.jaxbApi
|
|
|
|
implementation jakartaLibs.jaxb
|
|
|
|
implementation libs.jandex
|
2024-08-29 03:54:06 -04:00
|
|
|
implementation libs.hibernateModels
|
2024-04-04 17:41:12 -04:00
|
|
|
|
2022-04-22 19:40:06 -04:00
|
|
|
compileOnly libs.ant
|
2021-04-16 09:38:16 -04:00
|
|
|
|
2024-03-19 08:16:21 -04:00
|
|
|
annotationProcessor project( ':hibernate-processor' )
|
2023-05-06 05:56:15 -04:00
|
|
|
compileOnly jakartaLibs.annotation
|
2013-11-22 15:51:56 -05:00
|
|
|
|
2021-05-14 15:59:59 -04:00
|
|
|
testImplementation project( ':hibernate-testing' )
|
2013-12-02 21:53:19 -05:00
|
|
|
}
|
|
|
|
|
2021-09-01 12:15:14 -04:00
|
|
|
test {
|
|
|
|
include '**/**'
|
|
|
|
}
|
|
|
|
|
2011-04-01 15:39:49 -04:00
|
|
|
sourceSets {
|
2012-10-28 17:13:14 -04:00
|
|
|
test {
|
2013-11-22 22:20:27 -05:00
|
|
|
ext {
|
|
|
|
enversDemoJavaDir = file( "src/demo/java" )
|
|
|
|
enversDemoResourcesDir = file( "src/demo/resources" )
|
|
|
|
}
|
2012-10-28 17:13:14 -04:00
|
|
|
java {
|
|
|
|
srcDir enversDemoJavaDir
|
|
|
|
}
|
|
|
|
resources {
|
|
|
|
srcDir enversDemoResourcesDir
|
|
|
|
}
|
|
|
|
}
|
2011-10-18 00:29:45 -04:00
|
|
|
}
|
2012-02-15 17:31:29 -05:00
|
|
|
|
2021-04-22 12:15:45 -04:00
|
|
|
configurations {
|
|
|
|
tests {
|
|
|
|
description = 'Configuration for the produced test jar'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-05-28 08:38:32 -04:00
|
|
|
tasks.withType( Test.class ).each { test ->
|
2024-07-29 15:59:07 -04:00
|
|
|
if ( project.db == "h2" || project.db == "hsqldb" ) {
|
2024-05-28 08:38:32 -04:00
|
|
|
// Parallel test runs when running with in-memory databases
|
|
|
|
test.maxParallelForks = Runtime.runtime.availableProcessors().intdiv( 2 ) ?: 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-16 02:37:14 -04:00
|
|
|
sourcesJar {
|
|
|
|
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
|
|
|
}
|
|
|
|
|
2021-04-22 12:15:45 -04:00
|
|
|
task testJar(type: Jar, dependsOn: testClasses) {
|
|
|
|
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
|
|
|
archiveClassifier.set( 'test' )
|
|
|
|
from sourceSets.test.output
|
|
|
|
}
|
|
|
|
|
|
|
|
artifacts {
|
|
|
|
tests testJar
|
|
|
|
}
|
|
|
|
|
2015-08-19 13:11:20 -04:00
|
|
|
tasks."matrix_mariadb" {
|
|
|
|
beforeTest { descriptor ->
|
|
|
|
println "Starting test: " + descriptor
|
|
|
|
}
|
2023-08-10 10:20:24 -04:00
|
|
|
}
|