61 lines
1.9 KiB
Groovy
61 lines
1.9 KiB
Groovy
/*
|
|
* 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>.
|
|
*/
|
|
|
|
apply from: rootProject.file( 'gradle/published-java-module.gradle' )
|
|
apply plugin: 'hibernate-matrix-testing'
|
|
|
|
description = 'Hibernate\'s entity version (audit/history) support'
|
|
|
|
dependencies {
|
|
compile( project( ':hibernate-core' ) ) {
|
|
// Exclude access to this to avoid future use.
|
|
exclude group: "org.javassist", module: "javassist"
|
|
}
|
|
|
|
provided( libraries.ant )
|
|
annotationProcessor( project( ':hibernate-jpamodelgen' ) )
|
|
|
|
testCompile( project( ':hibernate-testing' ) )
|
|
testCompile( project( path: ':hibernate-core', configuration: 'tests' ) )
|
|
}
|
|
|
|
sourceSets {
|
|
test {
|
|
ext {
|
|
enversDemoJavaDir = file( "src/demo/java" )
|
|
enversDemoResourcesDir = file( "src/demo/resources" )
|
|
}
|
|
java {
|
|
srcDir enversDemoJavaDir
|
|
}
|
|
resources {
|
|
srcDir enversDemoResourcesDir
|
|
}
|
|
}
|
|
}
|
|
|
|
jar {
|
|
manifest {
|
|
instructionFirst 'Import-Package',
|
|
// TODO: Shouldn't have to explicitly list the JPA packages, but
|
|
// the plugin generates them with [1.0,2) versions.
|
|
"javax.persistence;version=\"${project.jpaVersion.osgiName}\"",
|
|
"javax.persistence.criteria;version=\"${project.jpaVersion.osgiName}\"",
|
|
"javax.persistence.metamodel;version=\"${project.jpaVersion.osgiName}\"",
|
|
"javax.persistence.spi;version=\"${project.jpaVersion.osgiName}\"",
|
|
// optionals
|
|
'javax.naming;resolution:=optional',
|
|
'org.apache.tools.ant;resolution:=optional'
|
|
}
|
|
}
|
|
|
|
tasks."matrix_mariadb" {
|
|
beforeTest { descriptor ->
|
|
println "Starting test: " + descriptor
|
|
}
|
|
}
|