2015-05-18 23:23:35 -05: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 15:06:58 -06:00
|
|
|
|
2020-04-06 18:21:11 +01:00
|
|
|
description = 'Hibernate\'s entity version (audit/history) support'
|
|
|
|
|
2018-01-10 15:06:58 -06:00
|
|
|
apply from: rootProject.file( 'gradle/published-java-module.gradle' )
|
2021-07-14 11:44:35 -05:00
|
|
|
apply plugin: 'org.hibernate.matrix-test'
|
2023-01-27 15:01:39 +01:00
|
|
|
apply plugin: 'org.hibernate.orm.build.properties'
|
2010-10-09 13:24:27 -05:00
|
|
|
|
|
|
|
dependencies {
|
2021-07-27 19:38:44 -05:00
|
|
|
api project( ':hibernate-core' )
|
2019-12-13 11:29:40 +00:00
|
|
|
|
2022-04-22 18:40:06 -05:00
|
|
|
implementation jakartaLibs.jaxbApi
|
|
|
|
implementation jakartaLibs.jaxb
|
|
|
|
implementation libs.hcann
|
|
|
|
implementation libs.jandex
|
2021-05-14 14:59:59 -05:00
|
|
|
|
2022-04-22 18:40:06 -05:00
|
|
|
compileOnly libs.ant
|
2021-04-16 15:38:16 +02:00
|
|
|
|
2021-05-14 14:59:59 -05:00
|
|
|
annotationProcessor project( ':hibernate-jpamodelgen' )
|
2013-11-22 14:51:56 -06:00
|
|
|
|
2021-05-14 14:59:59 -05:00
|
|
|
testImplementation project( ':hibernate-testing' )
|
2013-12-02 20:53:19 -06:00
|
|
|
}
|
|
|
|
|
2021-09-01 18:15:14 +02:00
|
|
|
test {
|
|
|
|
include '**/**'
|
|
|
|
}
|
|
|
|
|
2011-04-01 21:39:49 +02:00
|
|
|
sourceSets {
|
2012-10-28 22:13:14 +01:00
|
|
|
test {
|
2013-11-22 21:20:27 -06:00
|
|
|
ext {
|
|
|
|
enversDemoJavaDir = file( "src/demo/java" )
|
|
|
|
enversDemoResourcesDir = file( "src/demo/resources" )
|
|
|
|
}
|
2012-10-28 22:13:14 +01:00
|
|
|
java {
|
|
|
|
srcDir enversDemoJavaDir
|
|
|
|
}
|
|
|
|
resources {
|
|
|
|
srcDir enversDemoResourcesDir
|
|
|
|
}
|
|
|
|
}
|
2011-10-18 12:29:45 +08:00
|
|
|
}
|
2012-02-15 16:31:29 -06:00
|
|
|
|
2021-04-22 18:15:45 +02:00
|
|
|
configurations {
|
|
|
|
tests {
|
|
|
|
description = 'Configuration for the produced test jar'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-16 08:37:14 +02:00
|
|
|
sourcesJar {
|
|
|
|
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
|
|
|
}
|
|
|
|
|
2021-04-22 18:15:45 +02:00
|
|
|
task testJar(type: Jar, dependsOn: testClasses) {
|
|
|
|
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
|
|
|
archiveClassifier.set( 'test' )
|
|
|
|
from sourceSets.test.output
|
|
|
|
}
|
|
|
|
|
|
|
|
artifacts {
|
|
|
|
tests testJar
|
|
|
|
}
|
|
|
|
|
2015-08-19 18:11:20 +01:00
|
|
|
tasks."matrix_mariadb" {
|
|
|
|
beforeTest { descriptor ->
|
|
|
|
println "Starting test: " + descriptor
|
|
|
|
}
|
2016-06-18 15:12:23 -05:00
|
|
|
}
|
2023-01-27 15:01:39 +01:00
|
|
|
|
|
|
|
task collectConfigProperties { task ->
|
|
|
|
description 'Collect config properties'
|
|
|
|
|
|
|
|
tasks.generateConfigsProperties.javadocsBaseLink = 'https://docs.jboss.org/hibernate/orm/' + rootProject.ormVersion.family + '/javadocs/'
|
|
|
|
|
|
|
|
dependsOn tasks.generateConfigsProperties
|
|
|
|
}
|