hibernate-orm/hibernate-envers/hibernate-envers.gradle

80 lines
1.9 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 = 'Hibernate\'s entity version (audit/history) support'
apply from: rootProject.file( 'gradle/published-java-module.gradle' )
apply plugin: 'org.hibernate.matrix-test'
dependencies {
api project( ':hibernate-core' )
implementation libs.hibernateModels
implementation jakartaLibs.jaxbApi
implementation jakartaLibs.jaxb
implementation libs.jandex
2024-04-04 17:41:12 -04:00
implementation libs.hcann
compileOnly libs.ant
annotationProcessor project( ':hibernate-processor' )
compileOnly jakartaLibs.annotation
2013-11-22 15:51:56 -05:00
testImplementation project( ':hibernate-testing' )
2013-12-02 21:53:19 -05:00
}
test {
include '**/**'
}
sourceSets {
test {
2013-11-22 22:20:27 -05:00
ext {
enversDemoJavaDir = file( "src/demo/java" )
enversDemoResourcesDir = file( "src/demo/resources" )
}
java {
srcDir enversDemoJavaDir
}
resources {
srcDir enversDemoResourcesDir
}
}
2011-10-18 00:29:45 -04:00
}
configurations {
tests {
description = 'Configuration for the produced test jar'
}
}
tasks.withType( Test.class ).each { test ->
if ( project.db == "h2" || project.db == "hsqldb" ) {
// Parallel test runs when running with in-memory databases
test.maxParallelForks = Runtime.runtime.availableProcessors().intdiv( 2 ) ?: 1
}
}
sourcesJar {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
}
task testJar(type: Jar, dependsOn: testClasses) {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
archiveClassifier.set( 'test' )
from sourceSets.test.output
}
artifacts {
tests testJar
}
tasks."matrix_mariadb" {
beforeTest { descriptor ->
println "Starting test: " + descriptor
}
}