hibernate-orm/hibernate-core/hibernate-core.gradle

264 lines
8.6 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>.
*/
2019-11-07 15:11:28 -05:00
import org.apache.tools.ant.filters.ReplaceTokens
plugins {
id 'org.hibernate.build.xjc-jakarta'
}
description = 'Hibernate\'s core ORM functionality'
apply from: rootProject.file( 'gradle/published-java-module.gradle' )
apply plugin: 'org.hibernate.orm.antlr'
apply plugin: 'org.hibernate.matrix-test'
configurations {
tests {
description = 'Configuration for the produced test jar'
}
}
2016-05-04 16:19:34 -04:00
dependencies {
api jakartaLibs.jpa
api jakartaLibs.jta
implementation libs.hibernateModels
implementation libs.jandex
implementation libs.classmate
implementation libs.byteBuddy
implementation jakartaLibs.jaxbApi
implementation jakartaLibs.jaxb
implementation jakartaLibs.inject
implementation libs.antlrRuntime
compileOnly jakartaLibs.jacc
compileOnly jakartaLibs.validation
compileOnly jakartaLibs.cdi
compileOnly jakartaLibs.jsonbApi
compileOnly libs.jackson
compileOnly libs.jacksonXml
compileOnly dbLibs.postgresql
testImplementation project(':hibernate-testing')
testImplementation project(':hibernate-ant')
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 ) {
// for test runtime
transitive = true
}
testImplementation "joda-time:joda-time:2.3"
2022-12-18 16:32:15 -05:00
testImplementation dbLibs.h2
testRuntimeOnly libs.byteBuddy
testRuntimeOnly testLibs.weld
testRuntimeOnly testLibs.wildFlyTxnClient
testImplementation jakartaLibs.jsonb
testImplementation libs.jackson
testRuntimeOnly libs.jacksonXml
testRuntimeOnly libs.jacksonJsr310
testAnnotationProcessor project( ':hibernate-processor' )
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.
antlr libs.antlr
2022-04-27 07:44:57 -04:00
antlr libs.antlrRuntime
xjc jakartaLibs.xjc
xjc jakartaLibs.jaxb
xjc rootProject.fileTree(dir: 'patched-libs/jaxb2-basics', include: '*.jar')
}
2013-01-23 18:22:03 -05:00
jar {
manifest {
attributes(
2021-09-27 08:09:29 -04:00
'Main-Class': 'org.hibernate.Version'
)
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
}
sourceSets {
test {
resources {
2021-08-05 16:27:04 -04:00
srcDir 'src/test/resources'
srcDir 'src/test/bundles'
}
}
2019-05-21 17:29:57 -04:00
}
xjc {
2021-07-19 17:45:50 -04:00
outputDirectory = project.jaxbTargetDir
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'
}
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']
}
configuration {
xsdFile = file( 'src/main/resources/org/hibernate/xsd/cfg/configuration-3.2.0.xsd' )
xjcBindingFile = file( 'src/main/xjb/configuration-bindings.xjb' )
xjcExtensions += ['inheritance', 'simplify']
}
2022-05-25 15:14:48 -04:00
mapping {
xsdFile = file( 'src/main/resources/org/hibernate/xsd/mapping/mapping-7.0.xsd' )
2022-05-25 15:14:48 -04:00
xjcBindingFile = file( 'src/main/xjb/mapping-bindings.xjb' )
xjcExtensions += ['inheritance', 'simplify']
}
2012-08-22 14:41:16 -04:00
}
}
task copyBundleResourcesXml (type: Copy) {
inputs.property( "db", db )
inputs.property( "dbHost", dbHost )
ext {
bundlesTargetDir = file( "${buildDir}/bundles" )
// Escape
bundleTokens = [
'db.dialect' : dbBundle[db]['db.dialect'].replace("&", "&amp;"),
'jdbc.driver' : dbBundle[db]['jdbc.driver'].replace("&", "&amp;"),
'jdbc.user' : dbBundle[db]['jdbc.user'].replace("&", "&amp;"),
'jdbc.pass' : dbBundle[db]['jdbc.pass'].replace("&", "&amp;"),
'jdbc.url' : dbBundle[db]['jdbc.url'].replace("&", "&amp;"),
'jdbc.datasource' : dbBundle[db]['jdbc.datasource'].replace("&", "&amp;"),
'connection.init_sql' : dbBundle[db]['connection.init_sql'].replace("&", "&amp;")
]
ext.bundleTokens['buildDirName'] = project.relativePath( buildDir )
}
from('src/test/bundles/templates') {
include '**/*.xml'
}
into ext.bundlesTargetDir
filter( ReplaceTokens, tokens: ext.bundleTokens)
doFirst {
ext.bundlesTargetDir.mkdirs()
}
}
task copyBundleResourcesNonXml (type: Copy) {
inputs.property( "db", db )
ext {
bundlesTargetDir = file( "${buildDir}/bundles" )
// Escape
bundleTokens = dbBundle[db]
ext.bundleTokens['buildDirName'] = project.relativePath( buildDir )
}
from('src/test/bundles/templates') {
exclude '**/*.xml'
}
into ext.bundlesTargetDir
filter( ReplaceTokens, tokens: ext.bundleTokens)
2016-05-04 16:19:34 -04:00
doFirst {
ext.bundlesTargetDir.mkdirs()
}
2016-05-04 16:19:34 -04:00
}
task copyBundleResources (type: Copy) {
inputs.property( "db", db )
dependsOn tasks.copyBundleResourcesXml
dependsOn tasks.copyBundleResourcesNonXml
}
2021-07-26 14:51:22 -04:00
processTestResources {
dependsOn copyBundleResources
duplicatesStrategy = DuplicatesStrategy.INCLUDE
2021-07-26 14:51:22 -04:00
}
2016-05-04 16:19:34 -04:00
sourcesJar {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
}
2016-05-04 16:19:34 -04:00
task testJar(type: Jar, dependsOn: testClasses) {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
archiveClassifier.set( 'test' )
2016-05-04 16:19:34 -04:00
from sourceSets.test.output
}
artifacts {
tests testJar
}
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.processor.HibernateProcessor"
2019-05-21 17:29:57 -04:00
]
// 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" )
}
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'
// Allow creating a function in HSQLDB for this Java method
test.systemProperty 'hsqldb.method_class_names', 'org.hibernate.orm.test.jpa.transaction.TransactionTimeoutTest.sleep'
// 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'] )
//Avoid Log4J2 classloader leaks:
test.jvmArgs( ['-Dlog4j2.disableJmx=true'] )
2021-06-15 16:11:59 -04:00
test.beforeTest { descriptor ->
//println "Starting test: " + descriptor
}
if ( project.db == "h2" || project.db == "hsqldb" || project.db == "derby" ) {
// Parallel test runs when running with in-memory databases
test.maxParallelForks = Runtime.runtime.availableProcessors().intdiv( 2 ) ?: 1
}
}
2019-05-21 17:29:57 -04:00
tasks.named( "javadoc", Javadoc ) {
configure(options) {
overview = rootProject.file( "shared/javadoc/overview.html" )
}
}
tasks.sourcesJar.dependsOn ':hibernate-core:generateGraphParser'
tasks.sourcesJar.dependsOn ':hibernate-core:generateHqlParser'
tasks.sourcesJar.dependsOn ':hibernate-core:generateSqlScriptParser'
tasks.sourcesJar.dependsOn ':hibernate-core:generateOrderingParser'