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

270 lines
10 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'
2019-05-21 17:29:57 -04:00
configurations {
tests {
description = 'Configuration for the produced test jar'
}
}
2016-05-04 16:19:34 -04:00
dependencies {
api libraries.jakarta_jpa
api libraries.jakarta_jta
api libraries.jakarta_activation
api libraries.jakarta_jaxb_api
api libraries.jakarta_jaxb_runtime
api libraries.jandex
api libraries.classmate
api libraries.commons_annotations
implementation libraries.byteBuddy
implementation libraries.activation
implementation libraries.jaxb_runtime
implementation libraries.antlr
compileOnly libraries.jakarta_jacc
compileOnly libraries.jakarta_validation
compileOnly libraries.jakarta_cdi
compileOnly libraries.ant
testImplementation project(':hibernate-testing')
testImplementation libraries.shrinkwrap_api
testImplementation libraries.shrinkwrap
testImplementation libraries.shrinkwrap_descriptors_api_javaee
testImplementation libraries.shrinkwrap_descriptors_impl_javaee
testImplementation libraries.jakarta_jacc
testImplementation libraries.jakarta_validation
testImplementation( libraries.jakarta_validator ) {
// for test runtime
transitive = true
}
testImplementation libraries.mockito
testImplementation libraries.mockito_inline
testImplementation libraries.jodaTime
testImplementation libraries.assertj
testImplementation libraries.jakarta_cdi
// testImplementation libraries.jboss_ejb_spec_jar
// testImplementation libraries.jboss_annotation_spec_jar
// testRuntimeOnly "org.jboss.spec.javax.ejb:jboss-ejb-api_3.2_spec:1.0.0.Final"
testRuntimeOnly libraries.jakarta_el
// testRuntimeOnly 'jaxen:jaxen:1.1'
testRuntimeOnly libraries.byteBuddy
testRuntimeOnly libraries.jakarta_weld
// testRuntimeOnly libraries.atomikos
// testRuntimeOnly libraries.atomikos_jta
testRuntimeOnly libraries.wildfly_transaction_client
testAnnotationProcessor project( ':hibernate-jpamodelgen' )
antlr libraries.antlr
xjc libraries.jakarta_jaxb_xjc
xjc libraries.jakarta_jaxb_runtime
xjc rootProject.fileTree(dir: 'patched-libs/jaxb2-basics', include: '*.jar')
}
2013-01-23 18:22:03 -05:00
jar {
manifest {
attributes(
'Main-Class': 'org.hibernate.Version',
// // BND Plugin instructions (for OSGi):
// 'Import-Package': [
// 'javax.security.auth;resolution:=optional',
// // Make javax.security.jacc optional and do not reference a version range (because that's what we used to do)
// 'javax.security.jacc;resolution:=optional;version=!',
// // Make javax.validation optional and do not reference a version range (because that's what we used to do)
// 'javax.validation;resolution:=optional;version=!',
// 'javax.validation.constraints;resolution:=optional;version=!',
// 'javax.validation.groups;resolution:=optional;version=!',
// 'javax.validation.metadata;resolution:=optional;version=!',
// // Make javax.enterprise optional and do not reference a version range (because that's what we used to do)
// '!javax.enterprise*',
// 'javax.enterprise.context.spi;resolution:=optional;version=!',
// 'javax.enterprise.inject.spi;resolution:=optional;version=!',
// // For JPA, we don't want to target the automatically generated range, but a specific version
// "javax.persistence;version=\"${project.jpaVersion.osgiName}\"",
// // optionals
// 'jakarta.persistence.spi;resolution:=optional',
// 'javax.management;resolution:=optional',
// 'javax.naming.event;resolution:=optional',
// 'javax.naming.spi;resolution:=optional',
// 'org.apache.tools.ant;resolution:=optional',
// 'org.apache.tools.ant.taskdefs;resolution:=optional',
// 'org.apache.tools.ant.types;resolution:=optional',
// 'javax.inject;resolution:=optional',
// 'net.bytebuddy.*;resolution:=optional',
// 'org.objectweb.jonas_tm;resolution:=optional',
// 'com.ibm.websphere.jtaextensions;resolution:=optional',
// // We must specify the version explicitly to allow Karaf
// // to use an older version of JAXB (the only one we can use in Karaf)
// "javax.xml.bind.*;version=\"${project.jaxbApiVersionOsgiRange}\"",
// // Temporarily support JTA 1.1 -- Karaf and other frameworks still
// // use it. Without this, the plugin generates [1.2,2).
// 'javax.transaction;version="[1.1,2)"',
// // Also import every package referenced in the code
// '*'
// ].join( ',' ),
'-exportcontents': [
// Legacy resource packages containing XSDs that were traditionally not exported
"!org.hibernate.xsd.cfg",
"!org.hibernate.xsd.mapping",
// TODO: Uncomment once EntityManagerFactoryBuilderImpl no longer uses ClassLoaderServiceImpl.
//'org.hibernate.boot.registry.classloading.internal',
"*;version=${project.version}"
].join( ',' ),
)
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 {
main {
2021-08-05 16:27:04 -04:00
// add the XJC generated JAXB classes to the main source-set
java{
srcDir project.jaxbTargetDir
}
}
2021-08-05 16:27:04 -04:00
// resources inherently exclude sources
test {
resources {
srcDir 'src/test/java'
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']
}
mapping {
2021-07-19 17:45:50 -04:00
xsdFile = file( 'src/main/resources/org/hibernate/jpa/orm_2_2.xsd' )
xjcBindingFile = file( 'src/main/xjb/mapping-bindings.xjb' )
xjcExtensions += ['inheritance']
}
2012-08-22 14:41:16 -04:00
}
}
2016-05-04 16:19:34 -04:00
task copyBundleResources (type: Copy) {
inputs.property( "db", db )
ext {
bundlesTargetDir = file( "${buildDir}/bundles" )
bundleTokens = dbBundle[db]
ext.bundleTokens['buildDirName'] = project.relativePath( buildDir )
}
from file('src/test/bundles/templates')
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
}
2021-07-26 14:51:22 -04:00
processTestResources {
dependsOn copyBundleResources
duplicatesStrategy = DuplicatesStrategy.WARN
}
2016-05-04 16:19:34 -04:00
sourcesJar {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
2021-07-26 14:51:22 -04:00
}
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.jpamodelgen.JPAMetaModelEntityProcessor"
]
// put static metamodel classes back out to the source tree since they're version controlled.
destinationDir = 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'
if ( gradle.ext.javaVersions.test.launcher.asInt() >= 9 ) {
// See org.hibernate.boot.model.naming.NamingHelperTest.DefaultCharset.set
2021-06-15 16:11:59 -04:00
test.jvmArgs( ['--add-opens', 'java.base/java.nio.charset=ALL-UNNAMED'] )
// Weld needs this to generate proxies
2021-06-15 16:11:59 -04:00
test.jvmArgs( ['--add-opens', 'java.base/java.security=ALL-UNNAMED'] )
test.jvmArgs( ['--add-opens', 'java.base/java.lang=ALL-UNNAMED'] )
}
2021-06-15 16:11:59 -04:00
test.beforeTest { descriptor ->
//println "Starting test: " + descriptor
}
2021-06-15 16:11:59 -04:00
// Allow to exclude specific tests
if (project.hasProperty('excludeTests')) {
2021-06-15 16:11:59 -04:00
test.filter {
excludeTestsMatching project.property('excludeTests').toString()
}
}
2021-06-15 16:11:59 -04:00
// widen the overall 6.0 filter to include various package-protected tests
test.include 'org/hibernate/bytecode/internal/bytebuddy/**'
test.include 'org/hibernate/event/service/internal/**'
2021-07-09 05:34:49 -04:00
test.include 'org/hibernate/tool/schema/internal/**'
}
2019-05-21 17:29:57 -04:00