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>.
|
|
|
|
*/
|
2018-01-10 16:06:58 -05:00
|
|
|
|
2020-04-06 13:21:11 -04:00
|
|
|
description = 'Hibernate\'s entity version (audit/history) support'
|
|
|
|
|
2018-01-10 16:06:58 -05:00
|
|
|
apply from: rootProject.file( 'gradle/published-java-module.gradle' )
|
2021-07-14 12:44:35 -04:00
|
|
|
apply plugin: 'org.hibernate.matrix-test'
|
2010-10-09 14:24:27 -04:00
|
|
|
|
|
|
|
dependencies {
|
2021-07-27 20:38:44 -04:00
|
|
|
api project( ':hibernate-core' )
|
2019-12-13 06:29:40 -05:00
|
|
|
|
2021-04-16 09:38:16 -04:00
|
|
|
// TODO HHH-13703: get rid of this dependency
|
2021-05-14 15:59:59 -04:00
|
|
|
implementation libraries.dom4j
|
|
|
|
|
|
|
|
compileOnly libraries.ant
|
2021-04-16 09:38:16 -04:00
|
|
|
|
2021-05-14 15:59:59 -04:00
|
|
|
annotationProcessor project( ':hibernate-jpamodelgen' )
|
2013-11-22 15:51:56 -05:00
|
|
|
|
2021-05-14 15:59:59 -04:00
|
|
|
testImplementation project( ':hibernate-testing' )
|
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
|
|
|
|
2021-04-22 12:15:45 -04:00
|
|
|
configurations {
|
|
|
|
tests {
|
|
|
|
description = 'Configuration for the produced test jar'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-23 18:22:03 -05:00
|
|
|
jar {
|
|
|
|
manifest {
|
2019-10-23 04:03:00 -04:00
|
|
|
attributes(
|
|
|
|
// BND Plugin instructions (for OSGi):
|
|
|
|
'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',
|
|
|
|
// 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( ',' )
|
|
|
|
)
|
2013-01-23 18:22:03 -05:00
|
|
|
}
|
2013-04-16 10:28:40 -04:00
|
|
|
}
|
2015-08-19 13:11:20 -04:00
|
|
|
|
2021-06-16 02:37:14 -04:00
|
|
|
sourcesJar {
|
|
|
|
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
|
|
|
}
|
|
|
|
|
2021-04-22 12:15:45 -04:00
|
|
|
task testJar(type: Jar, dependsOn: testClasses) {
|
|
|
|
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
|
|
|
archiveClassifier.set( 'test' )
|
|
|
|
from sourceSets.test.output
|
|
|
|
}
|
|
|
|
|
|
|
|
artifacts {
|
|
|
|
tests testJar
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|