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
|
|
|
import org.apache.tools.ant.filters.ReplaceTokens
|
|
|
|
|
2020-04-06 18:21:11 +01:00
|
|
|
description = 'Hibernate\'s core ORM functionality'
|
|
|
|
|
2018-01-10 15:06:58 -06:00
|
|
|
apply from: rootProject.file( 'gradle/published-java-module.gradle' )
|
2010-10-08 20:51:41 -05:00
|
|
|
apply plugin: 'antlr'
|
2013-05-10 15:28:03 -05:00
|
|
|
apply plugin: 'hibernate-matrix-testing'
|
2015-04-09 11:36:04 -05:00
|
|
|
apply plugin: 'org.hibernate.build.gradle.xjc'
|
2013-05-10 15:28:03 -05:00
|
|
|
|
2019-11-08 20:54:00 +00:00
|
|
|
ext {
|
|
|
|
jaxbTargetDir = file( "${buildDir}/generated-src/jaxb/main" )
|
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets.main {
|
|
|
|
java.srcDir project.jaxbTargetDir
|
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
// resources inherently exclude sources
|
|
|
|
test {
|
|
|
|
resources {
|
|
|
|
setSrcDirs( ['src/test/java','src/test/resources'] )
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
testJavassist {
|
|
|
|
java {
|
|
|
|
compileClasspath += main.output + test.output
|
|
|
|
runtimeClasspath += main.output + test.output
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-04 21:19:34 +01:00
|
|
|
configurations {
|
|
|
|
tests {
|
|
|
|
description = 'Configuration for the produced test jar'
|
|
|
|
}
|
2019-11-08 20:54:00 +00:00
|
|
|
|
|
|
|
//Configures the compile and runtime configurations for our javassist tests
|
|
|
|
//and includes the dependencies of the test task.
|
|
|
|
testJavassistCompile.extendsFrom testCompile
|
|
|
|
testJavassistRuntime.extendsFrom testRuntime
|
2016-05-04 21:19:34 +01:00
|
|
|
}
|
|
|
|
|
2010-10-08 20:51:41 -05:00
|
|
|
dependencies {
|
2018-01-22 18:37:23 +00:00
|
|
|
|
2010-10-08 20:51:41 -05:00
|
|
|
compile( libraries.jpa )
|
2019-12-13 11:29:40 +00:00
|
|
|
// This can now be made provided
|
|
|
|
compile( libraries.javassist )
|
2018-02-27 16:59:41 +00:00
|
|
|
// Could be made optional?
|
|
|
|
compile( libraries.byteBuddy )
|
2011-06-08 11:12:56 -05:00
|
|
|
compile( libraries.antlr )
|
2016-01-08 11:12:58 -06:00
|
|
|
compile( libraries.jta )
|
2012-07-11 09:19:31 -05:00
|
|
|
compile( libraries.jandex )
|
2015-10-06 19:28:49 -05:00
|
|
|
compile( libraries.classmate )
|
2018-06-25 17:47:36 +02:00
|
|
|
compile( libraries.activation )
|
2012-03-09 13:34:02 -06:00
|
|
|
|
2015-03-19 14:20:00 -05:00
|
|
|
// We need dom4j for a number of things temporarily:
|
|
|
|
// 1) (unsupported) EntityMode.DOM4J support
|
|
|
|
// 2) Envers
|
|
|
|
// 3) hibernate-commons-annotations
|
|
|
|
compile( libraries.dom4j )
|
|
|
|
compile( libraries.commons_annotations )
|
2010-10-08 20:51:41 -05:00
|
|
|
antlr( libraries.antlr )
|
2012-03-09 13:34:02 -06:00
|
|
|
|
2018-10-15 12:15:41 +02:00
|
|
|
// JAXB
|
|
|
|
compile( libraries.jaxb_api )
|
|
|
|
compile( libraries.jaxb_runtime )
|
|
|
|
xjc( libraries.jaxb_runtime )
|
|
|
|
xjc( libraries.jaxb_xjc )
|
|
|
|
xjc( libraries.jaxb2_basics )
|
|
|
|
xjc( libraries.jaxb2_basics_ant )
|
|
|
|
xjc( libraries.activation )
|
|
|
|
|
2011-02-25 11:41:52 -06:00
|
|
|
provided( libraries.jacc )
|
2010-10-08 20:51:41 -05:00
|
|
|
provided( libraries.validation )
|
2015-11-17 10:21:58 -06:00
|
|
|
provided( libraries.ant )
|
2017-12-11 13:56:28 -06:00
|
|
|
provided( libraries.cdi )
|
2012-03-09 13:34:02 -06:00
|
|
|
|
2013-11-26 17:48:25 -06:00
|
|
|
testCompile( project(':hibernate-testing') )
|
2016-05-04 21:19:34 +01:00
|
|
|
testCompile( libraries.shrinkwrap_api )
|
|
|
|
testCompile( libraries.shrinkwrap )
|
2017-06-11 13:45:01 +02:00
|
|
|
testCompile( libraries.jacc )
|
2010-10-08 20:51:41 -05:00
|
|
|
testCompile( libraries.validation )
|
2012-08-01 10:40:49 -05:00
|
|
|
testCompile( libraries.jandex )
|
|
|
|
testCompile( libraries.classmate )
|
|
|
|
testCompile( libraries.mockito )
|
2017-02-08 13:08:02 +02:00
|
|
|
testCompile( libraries.mockito_inline )
|
2018-03-29 23:16:12 -05:00
|
|
|
testCompile( libraries.jodaTime )
|
2019-11-29 16:18:37 +00:00
|
|
|
testCompile( libraries.assertj )
|
2017-12-11 13:56:28 -06:00
|
|
|
|
2020-04-17 08:56:43 +01:00
|
|
|
testCompile( libraries.cdi )
|
2015-07-29 08:56:59 -05:00
|
|
|
|
2010-10-08 20:51:41 -05:00
|
|
|
testCompile( libraries.validator ) {
|
|
|
|
// for test runtime
|
|
|
|
transitive = true
|
|
|
|
}
|
2015-07-29 08:56:59 -05:00
|
|
|
|
2013-08-01 01:19:33 -05:00
|
|
|
// for testing stored procedure support
|
|
|
|
testCompile( libraries.derby )
|
2012-03-09 13:34:02 -06:00
|
|
|
|
2016-07-04 11:05:12 +02:00
|
|
|
testRuntime( "org.jboss.spec.javax.ejb:jboss-ejb-api_3.2_spec:1.0.0.Final" )
|
2017-12-14 10:20:02 +01:00
|
|
|
testRuntime( libraries.expression_language )
|
2010-10-08 20:51:41 -05:00
|
|
|
testRuntime( 'jaxen:jaxen:1.1' )
|
|
|
|
testRuntime( libraries.javassist )
|
2016-10-04 22:43:27 +02:00
|
|
|
testRuntime( libraries.byteBuddy )
|
2017-12-11 13:56:28 -06:00
|
|
|
testRuntime( libraries.weld )
|
2018-08-29 13:07:34 +03:00
|
|
|
testRuntime( libraries.atomikos )
|
|
|
|
testRuntime( libraries.atomikos_jta )
|
2018-05-25 15:46:12 +01:00
|
|
|
testRuntime(libraries.wildfly_transaction_client)
|
2016-08-06 14:05:03 -05:00
|
|
|
|
2018-09-04 23:02:26 +01:00
|
|
|
testAnnotationProcessor( project( ':hibernate-jpamodelgen' ) )
|
2016-08-06 14:05:03 -05:00
|
|
|
|
|
|
|
testCompile libraries.shrinkwrap_descriptors_api_javaee
|
|
|
|
testCompile libraries.shrinkwrap_descriptors_impl_javaee
|
|
|
|
|
|
|
|
testCompile libraries.jboss_ejb_spec_jar
|
|
|
|
testCompile libraries.jboss_annotation_spec_jar
|
2019-11-08 20:54:00 +00:00
|
|
|
|
|
|
|
// Additional tests requiring Javassist
|
|
|
|
// folder in src/javassist/java
|
|
|
|
testJavassistCompile libraries.javassist
|
2010-10-08 20:51:41 -05:00
|
|
|
}
|
|
|
|
|
2013-01-23 18:22:03 -05:00
|
|
|
jar {
|
|
|
|
manifest {
|
2019-10-23 10:03:00 +02:00
|
|
|
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=!',
|
2020-05-11 18:00:07 +01:00
|
|
|
// 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=!',
|
2019-10-23 10:03:00 +02:00
|
|
|
// 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
|
|
|
|
'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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-10 15:06:58 -06:00
|
|
|
//idea {
|
|
|
|
// module {
|
|
|
|
// sourceDirs += file( "${buildDir}/generated-src/antlr/main" )
|
|
|
|
// }
|
|
|
|
//}
|
2010-10-10 15:06:06 -05:00
|
|
|
|
2015-04-09 11:36:04 -05:00
|
|
|
xjc {
|
2018-01-16 15:47:05 -06:00
|
|
|
outputDir = project.jaxbTargetDir
|
2015-04-09 11:36:04 -05:00
|
|
|
|
|
|
|
schemas {
|
|
|
|
cfg {
|
|
|
|
xsd = file( 'src/main/resources/org/hibernate/xsd/cfg/legacy-configuration-4.0.xsd' )
|
|
|
|
xjcBinding = file( 'src/main/xjb/hbm-configuration-bindings.xjb' )
|
|
|
|
}
|
|
|
|
hbm {
|
|
|
|
xsd = file( 'src/main/resources/org/hibernate/xsd/mapping/legacy-mapping-4.0.xsd' )
|
|
|
|
xjcBinding = file( 'src/main/xjb/hbm-mapping-bindings.xjb' )
|
|
|
|
xjcExtensions = ['inheritance', 'simplify']
|
|
|
|
}
|
2012-08-22 13:41:16 -05:00
|
|
|
}
|
2011-03-29 13:58:17 +02:00
|
|
|
}
|
2013-04-04 14:30:53 -05:00
|
|
|
|
2020-05-19 12:25:06 -05:00
|
|
|
generateGrammarSource {
|
|
|
|
arguments += "-traceParser"
|
|
|
|
}
|
2015-04-09 11:36:04 -05:00
|
|
|
|
|
|
|
//sourceSets.main.sourceGeneratorsTask.dependsOn xjc
|
2015-04-10 11:58:22 -05:00
|
|
|
//sourceSets.main.sourceGeneratorsTask.dependsOn generateGrammarSource
|
|
|
|
tasks.compile.dependsOn generateGrammarSource
|
2015-07-20 12:06:09 -05:00
|
|
|
|
2016-05-04 21:19:34 +01:00
|
|
|
task copyBundleResources (type: Copy) {
|
2018-01-16 15:47:05 -06:00
|
|
|
ext {
|
|
|
|
bundlesTargetDir = file( "${buildDir}/bundles" )
|
|
|
|
bundleTokens = dbBundle[db]
|
|
|
|
ext.bundleTokens['buildDirName'] = buildDir.absolutePath
|
|
|
|
}
|
|
|
|
|
2016-05-04 21:19:34 +01:00
|
|
|
from file('src/test/bundles')
|
2018-01-16 15:47:05 -06:00
|
|
|
into ext.bundlesTargetDir
|
|
|
|
filter( ReplaceTokens, tokens: ext.bundleTokens)
|
|
|
|
|
2016-05-04 21:19:34 +01:00
|
|
|
doFirst {
|
2018-01-16 15:47:05 -06:00
|
|
|
ext.bundlesTargetDir.mkdirs()
|
2015-07-20 12:06:09 -05:00
|
|
|
}
|
2016-05-04 21:19:34 +01:00
|
|
|
}
|
|
|
|
processTestResources.dependsOn copyBundleResources
|
|
|
|
|
|
|
|
task testJar(type: Jar, dependsOn: testClasses) {
|
2019-10-23 09:58:09 +02:00
|
|
|
archiveClassifier.set( 'test' )
|
2016-05-04 21:19:34 +01:00
|
|
|
from sourceSets.test.output
|
|
|
|
}
|
|
|
|
|
|
|
|
artifacts {
|
|
|
|
tests testJar
|
|
|
|
}
|
2016-06-17 10:55:24 -05:00
|
|
|
|
2016-07-20 13:11:18 +05:30
|
|
|
test {
|
2018-01-10 15:06:58 -06:00
|
|
|
systemProperty 'file.encoding', 'utf-8'
|
2020-12-14 11:51:07 +01:00
|
|
|
|
|
|
|
if ( gradle.ext.javaVersions.test.launcher.asInt() >= 9 ) {
|
|
|
|
// See org.hibernate.boot.model.naming.NamingHelperTest.DefaultCharset.set
|
|
|
|
jvmArgs( ['--add-opens', 'java.base/java.nio.charset=ALL-UNNAMED'] )
|
2020-12-14 11:53:52 +01:00
|
|
|
// Weld needs this to generate proxies
|
|
|
|
jvmArgs( ['--add-opens', 'java.base/java.security=ALL-UNNAMED'] )
|
|
|
|
jvmArgs( ['--add-opens', 'java.base/java.lang=ALL-UNNAMED'] )
|
2020-12-14 11:51:07 +01:00
|
|
|
}
|
|
|
|
|
2017-03-23 12:05:03 +02:00
|
|
|
beforeTest { descriptor ->
|
|
|
|
//println "Starting test: " + descriptor
|
|
|
|
}
|
2017-12-14 10:20:02 +01:00
|
|
|
}
|
2019-11-08 20:54:00 +00:00
|
|
|
|
|
|
|
//Create the task that runs the integration tests found from the
|
|
|
|
//configured source directory and uses the correct classpath.
|
|
|
|
task testJavassist(type: Test) {
|
|
|
|
testClassesDirs = sourceSets.testJavassist.output.classesDirs
|
|
|
|
classpath = sourceSets.testJavassist.runtimeClasspath
|
|
|
|
//If you want to ensure that integration tests are run every time when you invoke
|
|
|
|
//this task, uncomment the following line.
|
|
|
|
//outputs.upToDateWhen { false }
|
2020-11-09 10:13:34 +01:00
|
|
|
|
|
|
|
if ( gradle.ext.javaToolchainEnabled ) {
|
|
|
|
// Configure version of Java tools
|
|
|
|
javaLauncher = javaToolchains.launcherFor {
|
|
|
|
languageVersion = gradle.ext.javaVersions.test.launcher
|
|
|
|
}
|
|
|
|
|
2020-11-09 12:09:02 +01:00
|
|
|
// Configure JVM Options
|
2020-12-14 12:10:10 +01:00
|
|
|
jvmArgs( getProperty( 'toolchain.launcher.jvmargs' ).toString().split( ' ' ) )
|
2020-11-09 12:09:02 +01:00
|
|
|
|
|
|
|
// Display version of Java tools
|
2020-11-09 10:13:34 +01:00
|
|
|
doFirst {
|
|
|
|
logger.lifecycle "Testing javassist with '${javaLauncher.get().metadata.installationPath}'"
|
|
|
|
}
|
|
|
|
}
|
2019-11-08 20:54:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
check.dependsOn testJavassist
|
|
|
|
testJavassist.mustRunAfter test
|