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>.
|
|
|
|
*/
|
2019-11-07 15:11:28 -05:00
|
|
|
import org.apache.tools.ant.filters.ReplaceTokens
|
2018-01-10 16:06:58 -05:00
|
|
|
|
2021-09-22 18:52:06 -04:00
|
|
|
plugins {
|
|
|
|
id 'org.hibernate.build.xjc-jakarta'
|
|
|
|
}
|
|
|
|
|
2020-04-06 13:21:11 -04:00
|
|
|
description = 'Hibernate\'s core ORM functionality'
|
|
|
|
|
2018-01-10 16:06:58 -05:00
|
|
|
apply from: rootProject.file( 'gradle/published-java-module.gradle' )
|
2021-06-28 16:59:35 -04:00
|
|
|
apply plugin: 'org.hibernate.orm.antlr'
|
2021-07-14 12:44:35 -04:00
|
|
|
apply plugin: 'org.hibernate.matrix-test'
|
2019-05-21 17:29:57 -04:00
|
|
|
|
2019-11-08 15:54:00 -05:00
|
|
|
|
2021-05-14 15:59:59 -04:00
|
|
|
configurations {
|
|
|
|
tests {
|
|
|
|
description = 'Configuration for the produced test jar'
|
|
|
|
}
|
2019-11-08 15:54:00 -05:00
|
|
|
}
|
|
|
|
|
2016-05-04 16:19:34 -04:00
|
|
|
|
2010-10-08 21:51:41 -04:00
|
|
|
dependencies {
|
2022-04-22 19:40:06 -04:00
|
|
|
api jakartaLibs.jpa
|
|
|
|
api jakartaLibs.jta
|
2022-02-24 16:04:37 -05:00
|
|
|
|
2022-04-22 19:40:06 -04:00
|
|
|
implementation libs.hcann
|
|
|
|
implementation libs.jandex
|
|
|
|
implementation libs.classmate
|
|
|
|
implementation libs.byteBuddy
|
2021-05-14 15:59:59 -04:00
|
|
|
|
2022-04-22 19:40:06 -04:00
|
|
|
implementation jakartaLibs.jaxbApi
|
|
|
|
implementation jakartaLibs.jaxb
|
|
|
|
implementation jakartaLibs.inject
|
2021-05-14 15:59:59 -04:00
|
|
|
|
2022-04-22 19:40:06 -04:00
|
|
|
implementation libs.antlrRuntime
|
2021-10-07 14:10:53 -04:00
|
|
|
|
2022-04-22 19:40:06 -04:00
|
|
|
compileOnly jakartaLibs.jacc
|
|
|
|
compileOnly jakartaLibs.validation
|
|
|
|
compileOnly jakartaLibs.cdi
|
2022-05-03 09:22:56 -04:00
|
|
|
compileOnly jakartaLibs.jsonbApi
|
2022-04-22 19:40:06 -04:00
|
|
|
compileOnly libs.jackson
|
2022-05-03 09:22:56 -04:00
|
|
|
compileOnly libs.jacksonXml
|
2021-10-15 07:28:26 -04:00
|
|
|
|
2021-05-14 15:59:59 -04:00
|
|
|
testImplementation project(':hibernate-testing')
|
2021-09-27 15:07:01 -04:00
|
|
|
testImplementation project(':hibernate-ant')
|
2022-04-22 19:40:06 -04:00
|
|
|
testImplementation testLibs.shrinkwrapApi
|
|
|
|
testImplementation testLibs.shrinkwrap
|
|
|
|
testImplementation testLibs.shrinkwrapDescriptors
|
|
|
|
testImplementation testLibs.shrinkwrapDescriptorsApi
|
|
|
|
testImplementation jakartaLibs.cdi
|
|
|
|
testImplementation jakartaLibs.jacc
|
|
|
|
testImplementation jakartaLibs.validation
|
|
|
|
testImplementation jakartaLibs.el
|
|
|
|
testImplementation( libs.validator ) {
|
2010-10-08 21:51:41 -04:00
|
|
|
// for test runtime
|
|
|
|
transitive = true
|
|
|
|
}
|
2022-04-22 19:40:06 -04:00
|
|
|
testImplementation "joda-time:joda-time:2.3"
|
2021-05-14 15:59:59 -04:00
|
|
|
|
2022-04-22 19:40:06 -04:00
|
|
|
testRuntimeOnly libs.byteBuddy
|
|
|
|
testRuntimeOnly testLibs.weld
|
|
|
|
testRuntimeOnly testLibs.wildFlyTxnClient
|
|
|
|
testRuntimeOnly libs.jackson
|
2021-05-14 15:59:59 -04:00
|
|
|
|
|
|
|
testAnnotationProcessor project( ':hibernate-jpamodelgen' )
|
|
|
|
|
2022-04-27 07:44:57 -04:00
|
|
|
// NOTE: it seems like, since 4.10, the Antlr Tool no longer defines
|
|
|
|
// transitive dep on the corresponding Antlr Runtime. At least, I get
|
|
|
|
// errors about mismatched versions if I do not include the runtime
|
|
|
|
// dependency here.
|
2022-04-22 19:40:06 -04:00
|
|
|
antlr libs.antlr
|
2022-04-27 07:44:57 -04:00
|
|
|
antlr libs.antlrRuntime
|
2021-05-14 15:59:59 -04:00
|
|
|
|
2022-04-22 19:40:06 -04:00
|
|
|
xjc jakartaLibs.xjc
|
|
|
|
xjc jakartaLibs.jaxb
|
2021-09-22 18:52:06 -04:00
|
|
|
xjc rootProject.fileTree(dir: 'patched-libs/jaxb2-basics', include: '*.jar')
|
2010-10-08 21:51:41 -04:00
|
|
|
}
|
|
|
|
|
2013-01-23 18:22:03 -05:00
|
|
|
jar {
|
|
|
|
manifest {
|
2019-10-23 04:03:00 -04:00
|
|
|
attributes(
|
2021-09-27 08:09:29 -04:00
|
|
|
'Main-Class': 'org.hibernate.Version'
|
2019-10-23 04:03:00 -04:00
|
|
|
)
|
2013-01-23 18:22:03 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-02 21:53:19 -05:00
|
|
|
ext {
|
2021-08-05 16:27:04 -04:00
|
|
|
jaxbTargetDir = project.file( "${buildDir}/generated/sources/xjc/main" )
|
2013-12-02 21:53:19 -05:00
|
|
|
}
|
|
|
|
|
2021-07-01 09:26:52 -04:00
|
|
|
sourceSets {
|
|
|
|
main {
|
2021-08-05 16:27:04 -04:00
|
|
|
// add the XJC generated JAXB classes to the main source-set
|
|
|
|
java{
|
2021-07-01 09:26:52 -04:00
|
|
|
srcDir project.jaxbTargetDir
|
|
|
|
}
|
|
|
|
}
|
2021-08-05 16:27:04 -04:00
|
|
|
|
|
|
|
// resources inherently exclude sources
|
2021-07-01 09:26:52 -04:00
|
|
|
test {
|
|
|
|
resources {
|
|
|
|
srcDir 'src/test/java'
|
2021-08-05 16:27:04 -04:00
|
|
|
srcDir 'src/test/resources'
|
|
|
|
srcDir 'src/test/bundles'
|
2021-07-01 09:26:52 -04:00
|
|
|
}
|
|
|
|
}
|
2019-05-21 17:29:57 -04:00
|
|
|
}
|
2010-10-10 16:06:06 -04:00
|
|
|
|
2015-04-09 12:36:04 -04:00
|
|
|
xjc {
|
2021-07-19 17:45:50 -04:00
|
|
|
outputDirectory = project.jaxbTargetDir
|
2015-04-09 12:36:04 -04:00
|
|
|
|
|
|
|
schemas {
|
|
|
|
cfg {
|
2021-07-19 17:45:50 -04:00
|
|
|
xsdFile = 'src/main/resources/org/hibernate/xsd/cfg/legacy-configuration-4.0.xsd'
|
|
|
|
xjcBindingFile = 'src/main/xjb/hbm-configuration-bindings.xjb'
|
2015-04-09 12:36:04 -04:00
|
|
|
}
|
|
|
|
hbm {
|
2021-07-19 17:45:50 -04:00
|
|
|
xsdFile = file( 'src/main/resources/org/hibernate/xsd/mapping/legacy-mapping-4.0.xsd' )
|
|
|
|
xjcBindingFile = file( 'src/main/xjb/hbm-mapping-bindings.xjb' )
|
|
|
|
xjcExtensions += ['inheritance', 'simplify']
|
2015-04-09 12:36:04 -04:00
|
|
|
}
|
2022-05-25 15:14:48 -04:00
|
|
|
mapping {
|
|
|
|
xsdFile = file( 'src/main/resources/org/hibernate/xsd/mapping/mapping-3.1.0.xsd' )
|
|
|
|
xjcBindingFile = file( 'src/main/xjb/mapping-bindings.xjb' )
|
|
|
|
xjcExtensions += ['inheritance', 'simplify']
|
|
|
|
}
|
2012-08-22 14:41:16 -04:00
|
|
|
}
|
2011-03-29 07:58:17 -04:00
|
|
|
}
|
2013-04-04 15:30:53 -04:00
|
|
|
|
2016-05-04 16:19:34 -04:00
|
|
|
task copyBundleResources (type: Copy) {
|
2021-09-22 02:41:51 -04:00
|
|
|
inputs.property( "db", db )
|
2018-01-16 16:47:05 -05:00
|
|
|
ext {
|
|
|
|
bundlesTargetDir = file( "${buildDir}/bundles" )
|
|
|
|
bundleTokens = dbBundle[db]
|
2021-09-02 15:02:46 -04:00
|
|
|
ext.bundleTokens['buildDirName'] = project.relativePath( buildDir )
|
2018-01-16 16:47:05 -05:00
|
|
|
}
|
|
|
|
|
2021-04-22 12:15:45 -04:00
|
|
|
from file('src/test/bundles/templates')
|
2018-01-16 16:47:05 -05:00
|
|
|
into ext.bundlesTargetDir
|
|
|
|
filter( ReplaceTokens, tokens: ext.bundleTokens)
|
2019-11-08 08:07:56 -05:00
|
|
|
|
2016-05-04 16:19:34 -04:00
|
|
|
doFirst {
|
2018-01-16 16:47:05 -05:00
|
|
|
ext.bundlesTargetDir.mkdirs()
|
2015-07-20 13:06:09 -04:00
|
|
|
}
|
2016-05-04 16:19:34 -04:00
|
|
|
}
|
2021-07-01 09:26:52 -04:00
|
|
|
|
2021-07-26 14:51:22 -04:00
|
|
|
processTestResources {
|
|
|
|
dependsOn copyBundleResources
|
|
|
|
duplicatesStrategy = DuplicatesStrategy.WARN
|
|
|
|
}
|
2016-05-04 16:19:34 -04:00
|
|
|
|
2021-06-16 02:37:14 -04:00
|
|
|
sourcesJar {
|
|
|
|
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
2021-07-26 14:51:22 -04:00
|
|
|
|
2021-06-16 02:37:14 -04:00
|
|
|
}
|
|
|
|
|
2016-05-04 16:19:34 -04:00
|
|
|
task testJar(type: Jar, dependsOn: testClasses) {
|
2021-04-22 12:15:45 -04:00
|
|
|
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
2019-10-23 03:58:09 -04:00
|
|
|
archiveClassifier.set( 'test' )
|
2016-05-04 16:19:34 -04:00
|
|
|
from sourceSets.test.output
|
|
|
|
}
|
|
|
|
|
|
|
|
artifacts {
|
|
|
|
tests testJar
|
|
|
|
}
|
2016-06-17 11:55:24 -04:00
|
|
|
|
2019-05-21 17:29:57 -04:00
|
|
|
task generateEnversStaticMetamodel(
|
|
|
|
type: JavaCompile,
|
|
|
|
description: "Generate the Hibernate Envers revision entity static metamodel classes." ) {
|
|
|
|
source = sourceSets.main.java
|
|
|
|
// we only want to include these specific classes for metamodel generation.
|
|
|
|
// if envers adds any additional revision entity classes, they must be listed here.
|
|
|
|
include 'org/hibernate/envers/DefaultRevisionEntity.java'
|
|
|
|
include 'org/hibernate/envers/DefaultTrackingModifiedEntitiesRevisionEntity.java'
|
|
|
|
include 'org/hibernate/envers/enhanced/SequenceIdRevisionEntity.java'
|
|
|
|
include 'org/hibernate/envers/enhanced/SequenceIdTrackingModifiedEntitiesRevisionEntity.java'
|
|
|
|
|
|
|
|
classpath = sourceSets.main.runtimeClasspath + sourceSets.test.compileClasspath
|
|
|
|
options.compilerArgs = [
|
|
|
|
"-proc:only",
|
|
|
|
"-processor",
|
|
|
|
"org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor"
|
|
|
|
]
|
|
|
|
|
|
|
|
// put static metamodel classes back out to the source tree since they're version controlled.
|
2021-12-01 12:50:10 -05:00
|
|
|
destinationDirectory = new File( "${projectDir}/src/main/java" )
|
2016-08-06 15:05:03 -04:00
|
|
|
}
|
2019-05-21 17:29:57 -04:00
|
|
|
|
2021-06-15 16:11:59 -04:00
|
|
|
tasks.withType( Test.class ).each { test ->
|
|
|
|
test.systemProperty 'file.encoding', 'utf-8'
|
2020-12-14 05:51:07 -05:00
|
|
|
|
2021-11-26 11:24:34 -05:00
|
|
|
// See org.hibernate.boot.model.naming.NamingHelperTest.DefaultCharset.set
|
|
|
|
test.jvmArgs( ['--add-opens', 'java.base/java.nio.charset=ALL-UNNAMED'] )
|
|
|
|
// Weld needs this to generate proxies
|
|
|
|
test.jvmArgs( ['--add-opens', 'java.base/java.security=ALL-UNNAMED'] )
|
|
|
|
test.jvmArgs( ['--add-opens', 'java.base/java.lang=ALL-UNNAMED'] )
|
2020-12-14 05:51:07 -05:00
|
|
|
|
2021-06-15 16:11:59 -04:00
|
|
|
test.beforeTest { descriptor ->
|
2017-03-23 06:05:03 -04:00
|
|
|
//println "Starting test: " + descriptor
|
|
|
|
}
|
2021-06-15 16:11:59 -04:00
|
|
|
|
2021-04-06 08:24:13 -04:00
|
|
|
// Allow to exclude specific tests
|
|
|
|
if (project.hasProperty('excludeTests')) {
|
2021-06-15 16:11:59 -04:00
|
|
|
test.filter {
|
2021-04-06 08:24:13 -04:00
|
|
|
excludeTestsMatching project.property('excludeTests').toString()
|
|
|
|
}
|
|
|
|
}
|
2017-12-14 04:20:02 -05:00
|
|
|
}
|
2019-05-21 17:29:57 -04:00
|
|
|
|