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-10-23 16:19:31 -04:00
|
|
|
import groovy.xml.*
|
2018-01-10 16:06:58 -05:00
|
|
|
import org.apache.tools.ant.filters.ReplaceTokens
|
2019-10-23 16:19:31 -04:00
|
|
|
import org.gradle.plugins.ide.eclipse.model.SourceFolder
|
|
|
|
import org.gradle.plugins.ide.eclipse.model.Library
|
|
|
|
import org.apache.tools.ant.taskdefs.condition.Os
|
2019-10-29 21:18:51 -04:00
|
|
|
import java.io.StringWriter
|
2018-01-10 16:06:58 -05:00
|
|
|
|
|
|
|
apply from: rootProject.file( 'gradle/published-java-module.gradle' )
|
2019-05-21 17:29:57 -04:00
|
|
|
apply plugin: Antlr4Plugin
|
2013-05-10 16:28:03 -04:00
|
|
|
apply plugin: 'hibernate-matrix-testing'
|
2019-05-21 17:29:57 -04:00
|
|
|
|
2015-04-09 12:36:04 -04:00
|
|
|
apply plugin: 'org.hibernate.build.gradle.xjc'
|
2013-05-10 16:28:03 -04:00
|
|
|
|
2018-01-10 16:06:58 -05:00
|
|
|
description = 'Hibernate\'s core ORM functionality'
|
|
|
|
|
2016-05-04 16:19:34 -04:00
|
|
|
configurations {
|
|
|
|
tests {
|
|
|
|
description = 'Configuration for the produced test jar'
|
|
|
|
}
|
2019-10-23 16:19:31 -04:00
|
|
|
|
|
|
|
eclipseConfig {
|
|
|
|
}
|
2016-05-04 16:19:34 -04:00
|
|
|
}
|
|
|
|
|
2010-10-08 21:51:41 -04:00
|
|
|
dependencies {
|
|
|
|
compile( libraries.jpa )
|
2018-03-02 11:46:41 -05:00
|
|
|
// Javassist is no longer the default enhancer but still required for other purposes, e.g. Scanning
|
|
|
|
compile( libraries.javassist )
|
2018-02-27 11:59:41 -05:00
|
|
|
compile( libraries.byteBuddy )
|
2011-06-08 12:12:56 -04:00
|
|
|
compile( libraries.antlr )
|
2016-01-08 12:12:58 -05:00
|
|
|
compile( libraries.jta )
|
2012-07-11 10:19:31 -04:00
|
|
|
compile( libraries.jandex )
|
2015-10-06 20:28:49 -04:00
|
|
|
compile( libraries.classmate )
|
2018-06-25 11:47:36 -04:00
|
|
|
compile( libraries.activation )
|
2012-03-09 14:34:02 -05:00
|
|
|
|
2015-03-19 15:20:00 -04: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 21:51:41 -04:00
|
|
|
antlr( libraries.antlr )
|
2012-03-09 14:34:02 -05:00
|
|
|
|
2018-10-15 06:15:41 -04: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 12:41:52 -05:00
|
|
|
provided( libraries.jacc )
|
2010-10-08 21:51:41 -04:00
|
|
|
provided( libraries.validation )
|
2015-11-17 11:21:58 -05:00
|
|
|
provided( libraries.ant )
|
2019-10-23 16:19:31 -04:00
|
|
|
eclipseConfig( compileOnly( libraries.ant ) )
|
|
|
|
eclipseConfig( compileOnly( libraries.logging_annotations ) )
|
|
|
|
eclipseConfig( runtime( libraries.junit ) )
|
|
|
|
eclipseConfig( runtime( libraries.junit5_api ) )
|
|
|
|
eclipseConfig( runtime( libraries.junit5_jupiter ) )
|
|
|
|
eclipseConfig( runtime( libraries.junit5_params ) )
|
|
|
|
eclipseConfig( runtime( libraries.junit_pcomms ) )
|
|
|
|
|
|
|
|
runtime( libraries.junit5_vintage )
|
|
|
|
runtime( libraries.junit5_jupiter )
|
|
|
|
|
2017-12-11 14:56:28 -05:00
|
|
|
provided( libraries.cdi )
|
2012-03-09 14:34:02 -05:00
|
|
|
|
2013-11-26 18:48:25 -05:00
|
|
|
testCompile( project(':hibernate-testing') )
|
2016-05-04 16:19:34 -04:00
|
|
|
testCompile( libraries.shrinkwrap_api )
|
|
|
|
testCompile( libraries.shrinkwrap )
|
2017-06-11 07:45:01 -04:00
|
|
|
testCompile( libraries.jacc )
|
2010-10-08 21:51:41 -04:00
|
|
|
testCompile( libraries.validation )
|
2012-08-01 11:40:49 -04:00
|
|
|
testCompile( libraries.jandex )
|
|
|
|
testCompile( libraries.classmate )
|
|
|
|
testCompile( libraries.mockito )
|
2017-02-08 06:08:02 -05:00
|
|
|
testCompile( libraries.mockito_inline )
|
2018-03-30 00:16:12 -04:00
|
|
|
testCompile( libraries.jodaTime )
|
2017-12-11 14:56:28 -05:00
|
|
|
|
|
|
|
testCompile( libraries.cdi ) {
|
2016-05-04 16:19:34 -04:00
|
|
|
// we need to force it to make sure we influence the one coming from arquillian
|
|
|
|
force=true
|
|
|
|
}
|
2015-07-29 09:56:59 -04:00
|
|
|
|
2010-10-08 21:51:41 -04:00
|
|
|
testCompile( libraries.validator ) {
|
|
|
|
// for test runtime
|
|
|
|
transitive = true
|
|
|
|
}
|
2015-07-29 09:56:59 -04:00
|
|
|
|
2013-08-01 02:19:33 -04:00
|
|
|
// for testing stored procedure support
|
|
|
|
testCompile( libraries.derby )
|
2012-03-09 14:34:02 -05:00
|
|
|
|
2016-07-04 05:05:12 -04:00
|
|
|
testRuntime( "org.jboss.spec.javax.ejb:jboss-ejb-api_3.2_spec:1.0.0.Final" )
|
2017-12-14 04:20:02 -05:00
|
|
|
testRuntime( libraries.expression_language )
|
2010-10-08 21:51:41 -04:00
|
|
|
testRuntime( 'jaxen:jaxen:1.1' )
|
|
|
|
testRuntime( libraries.javassist )
|
2016-10-04 16:43:27 -04:00
|
|
|
testRuntime( libraries.byteBuddy )
|
2017-12-11 14:56:28 -05:00
|
|
|
testRuntime( libraries.weld )
|
2018-08-29 06:07:34 -04:00
|
|
|
testRuntime( libraries.atomikos )
|
|
|
|
testRuntime( libraries.atomikos_jta )
|
2018-05-25 10:46:12 -04:00
|
|
|
testRuntime(libraries.wildfly_transaction_client)
|
2016-08-06 15:05:03 -04:00
|
|
|
|
2018-09-04 18:02:26 -04:00
|
|
|
testAnnotationProcessor( project( ':hibernate-jpamodelgen' ) )
|
2016-08-06 15:05:03 -04:00
|
|
|
|
|
|
|
testCompile libraries.arquillian_junit_container
|
|
|
|
testCompile libraries.arquillian_protocol_servlet
|
|
|
|
testCompile libraries.shrinkwrap_descriptors_api_javaee
|
|
|
|
testCompile libraries.shrinkwrap_descriptors_impl_javaee
|
|
|
|
testCompile libraries.wildfly_arquillian_container_managed
|
|
|
|
|
|
|
|
testCompile libraries.jboss_ejb_spec_jar
|
|
|
|
testCompile libraries.jboss_annotation_spec_jar
|
2010-10-08 21:51:41 -04:00
|
|
|
}
|
|
|
|
|
2013-01-23 18:22:03 -05:00
|
|
|
jar {
|
|
|
|
manifest {
|
2013-09-10 17:07:39 -04:00
|
|
|
mainAttributes( 'Main-Class': 'org.hibernate.Version' )
|
|
|
|
|
2013-06-12 16:50:06 -04:00
|
|
|
instructionFirst 'Import-Package',
|
2019-05-21 17:29:57 -04:00
|
|
|
'javax.security.auth;resolution:=optional',
|
|
|
|
'javax.security.jacc;resolution:=optional',
|
|
|
|
'javax.validation;resolution:=optional',
|
|
|
|
'javax.validation.constraints;resolution:=optional',
|
|
|
|
'javax.validation.groups;resolution:=optional',
|
|
|
|
'javax.validation.metadata;resolution:=optional',
|
|
|
|
// TODO: Shouldn't have to explicitly list this, but the plugin
|
|
|
|
// generates it with a [1.0,2) 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.enterprise*',
|
|
|
|
'javax.enterprise.context.spi;resolution:=optional',
|
|
|
|
'javax.enterprise.inject.spi;resolution:=optional',
|
|
|
|
'javax.inject;resolution:=optional',
|
|
|
|
'net.bytebuddy.*;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}\""
|
2013-03-11 12:15:34 -04:00
|
|
|
|
2013-11-26 11:43:50 -05:00
|
|
|
// // TODO: Uncomment once EntityManagerFactoryBuilderImpl no longer
|
|
|
|
// // uses ClassLoaderServiceImpl.
|
|
|
|
// instruction 'Export-Package',
|
|
|
|
// 'org.hibernate.boot.registry.classloading.internal',
|
|
|
|
// '*'
|
2013-01-23 18:22:03 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-02 21:53:19 -05:00
|
|
|
ext {
|
2019-05-21 17:29:57 -04:00
|
|
|
jaxbTargetDir = file( "${buildDir}/generated-src/jaxb/main" )
|
2013-12-02 21:53:19 -05:00
|
|
|
}
|
|
|
|
|
2011-04-01 12:02:07 -04:00
|
|
|
sourceSets.main {
|
2018-01-16 16:47:05 -05:00
|
|
|
java.srcDir project.jaxbTargetDir
|
2011-04-01 12:02:07 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// resources inherently exclude sources
|
|
|
|
sourceSets.test.resources {
|
|
|
|
setSrcDirs( ['src/test/java','src/test/resources'] )
|
2010-10-08 21:51:41 -04:00
|
|
|
}
|
|
|
|
|
2019-05-21 17:29:57 -04:00
|
|
|
idea {
|
|
|
|
module {
|
|
|
|
sourceDirs += file( "${buildDir}/generated-src/antlr/main" )
|
|
|
|
}
|
|
|
|
}
|
2010-10-10 16:06:06 -04:00
|
|
|
|
2019-10-23 16:19:31 -04:00
|
|
|
cleanEclipse {
|
|
|
|
project.delete '.externalToolBuilders'
|
|
|
|
project.delete 'hibernate-core-RunnableIdeTest.launch'
|
|
|
|
}
|
2019-11-06 14:24:07 -05:00
|
|
|
|
2019-10-23 16:19:31 -04:00
|
|
|
tasks.eclipse.dependsOn(cleanEclipse)
|
2019-11-06 14:24:07 -05:00
|
|
|
|
2019-10-23 16:19:31 -04:00
|
|
|
eclipse {
|
|
|
|
project {
|
|
|
|
file {
|
|
|
|
withXml { provider ->
|
2019-10-29 21:18:51 -04:00
|
|
|
//println('name:')
|
|
|
|
//println(name)
|
2019-10-23 16:19:31 -04:00
|
|
|
def projectDescriptionNode = provider.asNode()
|
|
|
|
def buildSpecNode = projectDescriptionNode.children().find { child -> child.name( ).equals('buildSpec') }
|
2019-10-29 21:18:51 -04:00
|
|
|
def buildCommandSW = new StringWriter()
|
|
|
|
def buildCommandXml = new MarkupBuilder(new IndentPrinter(buildCommandSW, " ", true))
|
|
|
|
buildCommandXml.doubleQuotes = true
|
|
|
|
buildCommandXml.buildCommand( ) {
|
|
|
|
//[java - Groovy's MarkupBuilder exception on generating "id" XML tag - Stack Overflow](https://stackoverflow.com/a/14284927/1350308)
|
|
|
|
"${'name'}"( "org.eclipse.ui.externaltools.ExternalToolBuilder" ) { }
|
|
|
|
triggers( 'auto,full,incremental,' )
|
|
|
|
arguments( ) {
|
|
|
|
dictionary( ) {
|
|
|
|
key ( 'LaunchConfigHandle' )
|
|
|
|
value ( '<project>/.externalToolBuilders/gradlew_process_test_resources.launch' )
|
|
|
|
}
|
|
|
|
dictionary( ) {
|
|
|
|
key ( 'incclean' )
|
|
|
|
value ( true )
|
2019-10-23 16:19:31 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-10-29 21:18:51 -04:00
|
|
|
def buildCommandNode = new XmlParser().parseText( buildCommandSW.toString() )
|
|
|
|
//println('strWriter:')
|
|
|
|
//println(buildCommandSW.toString())
|
2019-10-23 16:19:31 -04:00
|
|
|
buildSpecNode.append( buildCommandNode )
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mkdir '.externalToolBuilders'
|
|
|
|
file('.externalToolBuilders/gradlew_process_test_resources.launch').withWriter { writer ->
|
|
|
|
// Create MarkupBuilder with 4 space indent
|
|
|
|
def xml = new MarkupBuilder(new IndentPrinter(writer, " ", true))
|
|
|
|
|
|
|
|
xml.doubleQuotes = true
|
|
|
|
xml.mkp.xmlDeclaration(version: '1.0', encoding: 'utf-8', standalone: 'no')
|
|
|
|
xml.launchConfiguration( type: 'org.eclipse.ui.externaltools.ProgramBuilderLaunchConfigurationType' ) {
|
|
|
|
stringAttribute( key: 'org.eclipse.debug.core.ATTR_REFRESH_SCOPE', value: "${project.name}" )
|
|
|
|
booleanAttribute( key: 'org.eclipse.debug.ui.ATTR_LAUNCH_IN_BACKGROUND', value: 'false' )
|
|
|
|
|
|
|
|
if (Os.isFamily(Os.FAMILY_WINDOWS)) {
|
|
|
|
stringAttribute( key: 'org.eclipse.ui.externaltools.ATTR_LOCATION', value: file('../gradlew.bat').absolutePath )
|
|
|
|
} else {
|
|
|
|
stringAttribute( key: 'org.eclipse.ui.externaltools.ATTR_LOCATION', value: file('../gradlew').absolutePath )
|
|
|
|
}
|
2019-10-30 14:20:34 -04:00
|
|
|
booleanAttribute( key: 'org.eclipse.debug.core.ATTR_REFRESH_RECURSIVE', value: false )
|
|
|
|
stringAttribute(
|
|
|
|
key: 'org.eclipse.debug.core.ATTR_REFRESH_SCOPE',
|
|
|
|
value: '\${working_set:<?xml version="1.0" encoding="UTF-8"?>\n' +
|
|
|
|
'<resources>\n' +
|
|
|
|
'<item path="/' + "${project.name}" + '/src/test/bundles" type="2"/>\n' +
|
|
|
|
'<item path="/' + "${project.name}" + '/src/test/resources" type="2"/>\n' +
|
|
|
|
'</resources>}'
|
|
|
|
)
|
|
|
|
booleanAttribute( key: 'org.eclipse.debug.ui.ATTR_LAUNCH_IN_BACKGROUND', value: false )
|
2019-10-29 21:18:51 -04:00
|
|
|
stringAttribute(
|
|
|
|
key: 'org.eclipse.ui.externaltools.ATTR_BUILD_SCOPE',
|
2019-10-30 14:20:34 -04:00
|
|
|
value: '\${working_set:<?xml version="1.0" encoding="UTF-8"?>\n' +
|
|
|
|
'<resources>\n' +
|
|
|
|
'<item path="/' + "${project.name}" + '/src/test/bundles" type="2"/>\n' +
|
|
|
|
'<item path="/' + "${project.name}" + '/src/test/resources" type="2"/>\n' +
|
|
|
|
'</resources>}'
|
2019-10-29 21:18:51 -04:00
|
|
|
)
|
2019-10-23 16:19:31 -04:00
|
|
|
stringAttribute( key: 'org.eclipse.ui.externaltools.ATTR_RUN_BUILD_KINDS', value: 'incremental,auto,' )
|
|
|
|
stringAttribute( key: 'org.eclipse.ui.externaltools.ATTR_TOOL_ARGUMENTS', value: 'hibernate-core:processTestResources --no-daemon' )
|
2019-10-29 21:18:51 -04:00
|
|
|
booleanAttribute( key: 'org.eclipse.ui.externaltools.ATTR_TRIGGERS_CONFIGURED', value: true )
|
2019-10-23 16:19:31 -04:00
|
|
|
stringAttribute( key: 'org.eclipse.ui.externaltools.ATTR_WORKING_DIRECTORY', value: file('../').absolutePath )
|
|
|
|
}
|
|
|
|
xml.mkp.comment("AUTO-GENERATED FILE. DO NOT MODIFY. This is generated by gradle eclipse task")
|
|
|
|
}
|
|
|
|
file('hibernate-core-RunnableIdeTest.launch').withWriter { writer ->
|
|
|
|
// Create MarkupBuilder with 4 space indent
|
|
|
|
def xml = new MarkupBuilder(new IndentPrinter(writer, " ", true))
|
|
|
|
|
|
|
|
xml.doubleQuotes = true
|
|
|
|
xml.mkp.xmlDeclaration(version: '1.0', encoding: 'utf-8', standalone: 'no')
|
|
|
|
xml.launchConfiguration( type: 'org.eclipse.jdt.junit.launchconfig' ) {
|
|
|
|
listAttribute( key: 'org.eclipse.debug.core.MAPPED_RESOURCE_PATHS' ) {
|
|
|
|
listEntry( value: "${project.name}" )
|
|
|
|
}
|
|
|
|
listAttribute( key: 'org.eclipse.debug.core.MAPPED_RESOURCE_TYPES' ) {
|
|
|
|
listEntry( value: '4' )
|
|
|
|
}
|
|
|
|
stringAttribute( key: 'org.eclipse.jdt.junit.CONTAINER', value: "=${project.name}" )
|
|
|
|
stringAttribute( key: 'org.eclipse.jdt.junit.EXCLUDE_TAGS', value: '' )
|
2019-10-29 21:18:51 -04:00
|
|
|
booleanAttribute( key: 'org.eclipse.jdt.junit.HAS_EXCLUDE_TAGS', value: false )
|
|
|
|
booleanAttribute( key: 'org.eclipse.jdt.junit.HAS_INCLUDE_TAGS', value: true )
|
2019-10-23 16:19:31 -04:00
|
|
|
stringAttribute( key: 'org.eclipse.jdt.junit.INCLUDE_TAGS', value: 'RunnableIdeTest' )
|
2019-10-29 21:18:51 -04:00
|
|
|
booleanAttribute( key: 'org.eclipse.jdt.junit.KEEPRUNNING_ATTR', value: false )
|
2019-10-23 16:19:31 -04:00
|
|
|
stringAttribute( key: 'org.eclipse.jdt.junit.TESTNAME', value: '' )
|
|
|
|
stringAttribute( key: 'org.eclipse.jdt.junit.TEST_KIND', value: 'org.eclipse.jdt.junit.loader.junit5' )
|
|
|
|
stringAttribute( key: 'org.eclipse.jdt.launching.MAIN_TYPE', value: '' )
|
|
|
|
stringAttribute( key: 'org.eclipse.jdt.launching.PROJECT_ATTR', value: 'hibernate-core' )
|
|
|
|
stringAttribute( key: 'org.eclipse.jdt.launching.VM_ARGUMENTS', value: '-ea' )
|
|
|
|
}
|
|
|
|
xml.mkp.comment("AUTO-GENERATED FILE. DO NOT MODIFY. This is generated by gradle eclipse task")
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
classpath {
|
|
|
|
plusConfigurations += [
|
|
|
|
configurations.eclipseConfig
|
|
|
|
]
|
|
|
|
def frf = it.fileReferenceFactory
|
|
|
|
|
|
|
|
file {
|
|
|
|
beforeMerged { classpath ->
|
|
|
|
}
|
|
|
|
whenMerged { classpath ->
|
|
|
|
Set exclusionSourceSet = [
|
|
|
|
'src/main/resources',
|
|
|
|
'src/test/resources'
|
|
|
|
]
|
|
|
|
List newSourceSet = []
|
|
|
|
classpath.entries.each { item ->
|
|
|
|
if( !exclusionSourceSet.contains( item.path ) ) {
|
2019-10-29 21:18:51 -04:00
|
|
|
//println( 'INCLUDING: ' + item )
|
2019-10-23 16:19:31 -04:00
|
|
|
newSourceSet.add( item )
|
|
|
|
} else {
|
2019-10-29 21:18:51 -04:00
|
|
|
//println( 'NOT INCLUDING: ' + item )
|
2019-10-23 16:19:31 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
def aptMain = new SourceFolder('target/generated-src/apt/main', 'bin/main')
|
|
|
|
def aptTest = new SourceFolder('target/generated-src/apt/test', 'bin/test')
|
|
|
|
def resourceMain = new SourceFolder('src/main/resources', 'target/resources/main')
|
|
|
|
def resourceTest = new SourceFolder('src/test/resources', 'target/resources/test')
|
|
|
|
newSourceSet += [
|
|
|
|
aptMain,
|
|
|
|
aptTest,
|
|
|
|
resourceMain,
|
|
|
|
resourceTest
|
|
|
|
]
|
|
|
|
classpath.entries = newSourceSet
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-09 12:36:04 -04:00
|
|
|
xjc {
|
2018-01-16 16:47:05 -05:00
|
|
|
outputDir = project.jaxbTargetDir
|
2015-04-09 12:36:04 -04: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 14:41:16 -04:00
|
|
|
}
|
2011-03-29 07:58:17 -04:00
|
|
|
}
|
2013-04-04 15:30:53 -04:00
|
|
|
|
2015-04-09 12:36:04 -04:00
|
|
|
|
|
|
|
//sourceSets.main.sourceGeneratorsTask.dependsOn xjc
|
2019-05-21 17:29:57 -04:00
|
|
|
//sourceSets.main.sourceGeneratorsTask.dependsOn antlr
|
|
|
|
tasks.compile.dependsOn antlr
|
|
|
|
|
|
|
|
// todo (6.0) : remove this once we get 6.0 stable-ish
|
|
|
|
tasks.withType( JavaCompile ).forEach({ JavaCompile c -> c.options.compilerArgs += ["-Xmaxerrs", "4999"]})
|
2015-07-20 13:06:09 -04:00
|
|
|
|
2016-05-04 16:19:34 -04:00
|
|
|
task copyBundleResources (type: Copy) {
|
2018-01-16 16:47:05 -05:00
|
|
|
ext {
|
|
|
|
bundlesTargetDir = file( "${buildDir}/bundles" )
|
|
|
|
bundleTokens = dbBundle[db]
|
|
|
|
ext.bundleTokens['buildDirName'] = buildDir.absolutePath
|
|
|
|
}
|
|
|
|
|
2016-05-04 16:19:34 -04:00
|
|
|
from file('src/test/bundles')
|
2018-01-16 16:47:05 -05:00
|
|
|
into ext.bundlesTargetDir
|
|
|
|
filter( ReplaceTokens, tokens: ext.bundleTokens)
|
2019-10-23 16:19:31 -04:00
|
|
|
//println( 'ext: ' + ext )
|
|
|
|
//println( 'ext.bundleTokens:' + ext.bundleTokens )
|
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
|
|
|
}
|
|
|
|
processTestResources.dependsOn copyBundleResources
|
|
|
|
|
|
|
|
task testJar(type: Jar, dependsOn: testClasses) {
|
|
|
|
classifier = 'test'
|
|
|
|
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.
|
|
|
|
destinationDir = new File( "${projectDir}/src/main/java" )
|
2016-08-06 15:05:03 -04:00
|
|
|
}
|
2019-05-21 17:29:57 -04:00
|
|
|
//
|
|
|
|
//if ( JavaVersion.current().isJava9Compatible() ) {
|
|
|
|
// logger.warn( '[WARN] Skipping Javassist-related tests for hibernate-core due to Javassist JDK 9 incompatibility' )
|
|
|
|
//
|
|
|
|
// // we need to exclude tests using Javassist enhancement, which does not properly support
|
|
|
|
// // Java 9 yet - https://issues.jboss.org/browse/JASSIST-261
|
|
|
|
// test {
|
|
|
|
// // rather than wild-cards, keep an explicit list
|
|
|
|
// exclude 'org/hibernate/jpa/test/enhancement/InterceptFieldClassFileTransformerTest.class'
|
|
|
|
// exclude 'org/hibernate/jpa/test/enhancement/runtime/JpaRuntimeEnhancementTest.class'
|
|
|
|
// exclude 'org/hibernate/test/bytecode/enhancement/EnhancerTest.class'
|
|
|
|
// exclude 'org/hibernate/test/bytecode/enhancement/basic/BasicInSessionTest.class'
|
|
|
|
//
|
|
|
|
// // also, any tests using Arquillian for in-container testing with WildFly currently
|
|
|
|
// // need to be excluded because WildFly does not yet work with Java 9
|
|
|
|
// exclude 'org/hibernate/test/wf/ddl/**'
|
|
|
|
// exclude 'org/hibernate/jpa/test/cdi/**'
|
|
|
|
// exclude 'org/hibernate/envers/internal/tools/MapProxyTest.class'
|
|
|
|
// exclude 'org/hibernate/envers/test/integration/components/dynamic/AuditedDynamicComponentTest.class'
|
|
|
|
// exclude 'org/hibernate/envers/test/integration/components/dynamic/AuditedDynamicComponentsAdvancedCasesTest.class'
|
|
|
|
// }
|
|
|
|
//}
|
|
|
|
|
2016-08-06 15:05:03 -04:00
|
|
|
|
2019-05-21 17:29:57 -04:00
|
|
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
// todo (6.0) : fix after fixing hibernate-spatial
|
|
|
|
//processTestResources {
|
|
|
|
// doLast {
|
|
|
|
// copy {
|
|
|
|
// from file( 'src/test/resources' )
|
|
|
|
// into file( "${buildDir}/resources/test" )
|
|
|
|
// include 'arquillian.xml'
|
|
|
|
// include 'org/hibernate/test/wf/ddl/manifest.mf'
|
|
|
|
// expand wildFlyInstallDir: project( ':hibernate-orm-modules' ).wildFlyInstallDir,
|
|
|
|
// hibernateMajorMinorVersion: "${project.ormVersion.family}",
|
|
|
|
// arquillianDeploymentExportDir: "${rootProject.buildDir.absolutePath}/arquillian-deployments"
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
//}
|
|
|
|
//
|
|
|
|
//test.dependsOn ':hibernate-orm-modules:prepareWildFlyForTests'
|
|
|
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2016-07-20 03:41:18 -04:00
|
|
|
|
|
|
|
test {
|
2018-01-10 16:06:58 -05:00
|
|
|
systemProperty 'file.encoding', 'utf-8'
|
2017-03-23 06:05:03 -04:00
|
|
|
beforeTest { descriptor ->
|
|
|
|
//println "Starting test: " + descriptor
|
|
|
|
}
|
2017-12-14 04:20:02 -05:00
|
|
|
}
|
2019-05-21 17:29:57 -04:00
|
|
|
|
|
|
|
|
|
|
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
// Custom Antlr v4 Plugin (to work with Gradle 3)
|
|
|
|
|
|
|
|
ext {
|
|
|
|
baseAntlrInputPath = 'src/main/antlr'
|
|
|
|
baseAntlrOutputPath = 'generated-src/antlr/main'
|
|
|
|
}
|
|
|
|
|
|
|
|
class GrammarDescriptor {
|
|
|
|
String packageName
|
|
|
|
String grammarName
|
|
|
|
|
|
|
|
GrammarDescriptor(String packageName, String grammarName) {
|
|
|
|
this.packageName = packageName
|
|
|
|
this.grammarName = grammarName
|
|
|
|
}
|
|
|
|
|
|
|
|
File resolveSourceFile(Project project) {
|
|
|
|
return project.file(
|
|
|
|
project.baseAntlrInputPath +
|
|
|
|
'/' + packageName.replace( '.', '/' ) +
|
|
|
|
'/' + grammarName + '.g4'
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
File resolveOutputFile(Project project) {
|
|
|
|
final File baseOutputDir = project.file( "${project.buildDir}/${project.baseAntlrOutputPath}/" )
|
|
|
|
final File packagedOutputDirectory = new File( baseOutputDir, packageName.replace( '.', '/' ) )
|
|
|
|
|
|
|
|
return new File( packagedOutputDirectory, grammarName + '.g4' )
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class Antlr4Plugin implements Plugin<Project> {
|
|
|
|
void apply(Project project) {
|
|
|
|
project.with {
|
|
|
|
apply plugin : 'java'
|
|
|
|
|
|
|
|
configurations.maybeCreate 'antlr'
|
|
|
|
|
|
|
|
Antlr4GenerationTask genTask = tasks.create 'antlr', Antlr4GenerationTask
|
|
|
|
genTask.group = 'Build'
|
|
|
|
genTask.description = 'Generate source code from ANTLR grammar'
|
|
|
|
|
|
|
|
tasks.getByName('compileJava').dependsOn genTask
|
|
|
|
|
|
|
|
SourceSet mainSourceSet = project.convention.getPlugin( JavaPluginConvention ).sourceSets.getByName( SourceSet.MAIN_SOURCE_SET_NAME );
|
|
|
|
mainSourceSet.compileClasspath += configurations.antlr
|
|
|
|
|
|
|
|
SourceSet testSourceSet = project.convention.getPlugin( JavaPluginConvention ).sourceSets.getByName( SourceSet.TEST_SOURCE_SET_NAME );
|
|
|
|
testSourceSet.compileClasspath += configurations.antlr
|
|
|
|
|
|
|
|
project.afterEvaluate({
|
|
|
|
mainSourceSet.java.srcDir( genTask.outputDirectory )
|
|
|
|
})
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class Antlr4GenerationTask extends DefaultTask {
|
|
|
|
static final String HQL_PCKG = 'org.hibernate.query.hql.internal'
|
|
|
|
static final String IMPORT_SQL_PCKG = 'org.hibernate.tool.hbm2ddl.grammar'
|
|
|
|
static final String GRAPH_PCKG = 'org.hibernate.graph.internal.parse'
|
|
|
|
|
|
|
|
List<GrammarDescriptor> grammarDescriptors = [
|
|
|
|
new GrammarDescriptor( HQL_PCKG, 'HqlLexer' ),
|
|
|
|
new GrammarDescriptor( HQL_PCKG, 'HqlParser' ),
|
|
|
|
new GrammarDescriptor( IMPORT_SQL_PCKG, 'SqlStatementLexer' ),
|
|
|
|
new GrammarDescriptor( IMPORT_SQL_PCKG, 'SqlStatementParser' ),
|
|
|
|
new GrammarDescriptor( GRAPH_PCKG, 'GraphLanguageLexer' ),
|
|
|
|
new GrammarDescriptor( GRAPH_PCKG, 'GraphLanguageParser' )
|
|
|
|
]
|
|
|
|
|
|
|
|
@InputFiles
|
|
|
|
@SkipWhenEmpty
|
|
|
|
FileCollection getSource() {
|
|
|
|
// only used for UP-TO-DATE checking
|
|
|
|
return project.files( grammarDescriptors*.resolveSourceFile( project ) )
|
|
|
|
}
|
|
|
|
|
|
|
|
@OutputDirectory
|
|
|
|
File getOutputDirectory() {
|
|
|
|
// only used for UP-TO-DATE checking
|
|
|
|
return project.file( "${project.buildDir}/${project.baseAntlrOutputPath}" )
|
|
|
|
}
|
|
|
|
|
|
|
|
@TaskAction
|
|
|
|
void antlrGeneration() {
|
|
|
|
logger.lifecycle( "Starting custom Antlr (v4) grammar generation" )
|
|
|
|
|
|
|
|
grammarDescriptors.forEach( { grammarDescriptor -> generate( grammarDescriptor ) } )
|
|
|
|
}
|
|
|
|
|
|
|
|
def generate(GrammarDescriptor grammarDescriptor) {
|
|
|
|
final File sourceFile = grammarDescriptor.resolveSourceFile( project )
|
|
|
|
final File outputFile = grammarDescriptor.resolveOutputFile( project )
|
|
|
|
|
|
|
|
logger.lifecycle( "Starting Antlr grammar generation `${grammarDescriptor.grammarName} : [${sourceFile.absolutePath}] -> [${outputFile.absolutePath}]" )
|
|
|
|
|
|
|
|
outputFile.parentFile.mkdirs()
|
|
|
|
|
|
|
|
project.javaexec {
|
|
|
|
main 'org.antlr.v4.Tool'
|
|
|
|
classpath project.configurations.antlr
|
|
|
|
args '-o', outputFile.parentFile.absolutePath
|
|
|
|
// args '-lib', sourceFile.parentFile.absolutePath
|
|
|
|
args '-long-messages'
|
|
|
|
args '-listener'
|
|
|
|
args '-visitor'
|
|
|
|
args sourceFile.absolutePath
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|