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>.
|
|
|
|
*/
|
2013-05-10 16:28:03 -04:00
|
|
|
apply plugin: 'hibernate-matrix-testing'
|
2010-10-09 14:24:27 -04:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile( project( ':hibernate-core' ) )
|
2013-11-22 15:51:56 -05:00
|
|
|
|
2012-07-12 10:33:36 -04:00
|
|
|
provided( [group: 'org.hibernate', name: 'hibernate-tools', version: '3.2.0.ga'] )
|
2011-08-21 11:53:21 -04:00
|
|
|
provided( libraries.ant )
|
2015-09-02 09:23:20 -04:00
|
|
|
provided( project( ':hibernate-jpamodelgen' ) )
|
2013-11-22 15:51:56 -05:00
|
|
|
|
2016-05-06 15:37:00 -04:00
|
|
|
testCompile( project( ':hibernate-testing' ) )
|
|
|
|
testCompile( project( path: ':hibernate-core', configuration: 'tests' ) )
|
2010-10-09 14:24:27 -04:00
|
|
|
testRuntime( libraries.javassist )
|
2016-10-04 16:43:27 -04:00
|
|
|
testRuntime( libraries.byteBuddy )
|
2016-06-17 20:15:08 -04:00
|
|
|
|
|
|
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
// Java 9 ftw!
|
|
|
|
if ( JavaVersion.current().isJava9Compatible() ) {
|
|
|
|
// The JDK used to run Gradle is Java 9+, and we assume that that is the same
|
|
|
|
// JDK for executing tasks
|
|
|
|
provided( 'com.sun.xml.bind:jaxb-impl:2.2.11' )
|
|
|
|
provided( 'org.glassfish.jaxb:jaxb-xjc:2.2.11' )
|
|
|
|
provided( 'org.jvnet.jaxb2_commons:jaxb2-basics:0.11.0' )
|
|
|
|
provided( 'org.jvnet.jaxb2_commons:jaxb2-basics-ant:0.11.0' )
|
|
|
|
provided( 'javax:javaee-api:7.0' )
|
|
|
|
|
|
|
|
testCompile( 'com.sun.xml.bind:jaxb-impl:2.2.11' )
|
|
|
|
testCompile( 'org.glassfish.jaxb:jaxb-xjc:2.2.11' )
|
|
|
|
testCompile( 'org.jvnet.jaxb2_commons:jaxb2-basics:0.11.0' )
|
|
|
|
testCompile( 'org.jvnet.jaxb2_commons:jaxb2-basics-ant:0.11.0' )
|
|
|
|
testCompile( 'javax:javaee-api:7.0' )
|
|
|
|
|
|
|
|
testRuntime( 'com.sun.xml.bind:jaxb-impl:2.2.11' )
|
|
|
|
testRuntime( 'org.glassfish.jaxb:jaxb-xjc:2.2.11' )
|
|
|
|
testRuntime( 'org.jvnet.jaxb2_commons:jaxb2-basics:0.11.0' )
|
|
|
|
testRuntime( 'org.jvnet.jaxb2_commons:jaxb2-basics-ant:0.11.0' )
|
|
|
|
testRuntime( 'javax:javaee-api:7.0' )
|
|
|
|
}
|
|
|
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2010-10-09 14:24:27 -04:00
|
|
|
}
|
|
|
|
|
2015-04-10 12:58:22 -04:00
|
|
|
mavenPom {
|
|
|
|
name = 'ENtity VERSioning support'
|
|
|
|
description = 'ENtity VERSioning support'
|
2013-04-16 19:25:20 -04:00
|
|
|
}
|
|
|
|
|
2013-12-02 21:53:19 -05:00
|
|
|
def osgiDescription() {
|
2015-04-10 12:58:22 -04:00
|
|
|
return mavenPom.description
|
2013-12-02 21:53:19 -05:00
|
|
|
}
|
|
|
|
|
2011-04-01 15:39:49 -04:00
|
|
|
sourceSets {
|
2012-10-28 17:13:14 -04:00
|
|
|
test {
|
2013-11-22 22:20:27 -05:00
|
|
|
ext {
|
|
|
|
enversDemoJavaDir = file( "src/demo/java" )
|
|
|
|
enversDemoResourcesDir = file( "src/demo/resources" )
|
|
|
|
}
|
2012-10-28 17:13:14 -04:00
|
|
|
java {
|
|
|
|
srcDir enversDemoJavaDir
|
|
|
|
}
|
|
|
|
resources {
|
|
|
|
srcDir enversDemoResourcesDir
|
|
|
|
}
|
|
|
|
}
|
2011-10-18 00:29:45 -04:00
|
|
|
}
|
2012-02-15 17:31:29 -05:00
|
|
|
|
2013-01-23 18:22:03 -05:00
|
|
|
jar {
|
|
|
|
manifest {
|
2013-08-13 11:03:29 -04:00
|
|
|
instructionFirst 'Import-Package',
|
2016-11-17 13:58:13 -05:00
|
|
|
// TODO: Remove after Javassist is blown away in ORM 6
|
|
|
|
"javassist;version=\"${javassistVersion}\"",
|
|
|
|
"javassist.util.proxy;version=\"${javassistVersion}\"",
|
2013-04-10 14:46:08 -04:00
|
|
|
// TODO: Shouldn't have to explicitly list the JPA packages, but
|
|
|
|
// the plugin generates them with [1.0,2) versions.
|
|
|
|
'javax.persistence;version="2.1.0"',
|
|
|
|
'javax.persistence.criteria;version="2.1.0"',
|
|
|
|
'javax.persistence.metamodel;version="2.1.0"',
|
2013-08-13 11:03:29 -04:00
|
|
|
'javax.persistence.spi;version="2.1.0"',
|
|
|
|
// optionals
|
|
|
|
'javax.naming;resolution:=optional',
|
|
|
|
'org.apache.tools.ant;resolution:=optional'
|
2013-01-23 18:22:03 -05:00
|
|
|
}
|
2013-04-16 10:28:40 -04:00
|
|
|
}
|
2015-08-19 13:11:20 -04:00
|
|
|
|
|
|
|
tasks."matrix_mariadb" {
|
|
|
|
beforeTest { descriptor ->
|
|
|
|
println "Starting test: " + descriptor
|
|
|
|
}
|
2016-06-18 16:12:23 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( JavaVersion.current().isJava9Compatible() ) {
|
|
|
|
logger.warn( '[WARN] Skipping Javassist-related tests for hibernate-envers 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/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'
|
|
|
|
}
|
2015-08-19 13:11:20 -04:00
|
|
|
}
|