2013-05-10 16:28:03 -04:00
|
|
|
apply plugin: 'hibernate-matrix-testing'
|
2010-10-09 14:24:27 -04:00
|
|
|
|
2013-11-18 16:36:23 -05:00
|
|
|
configurations {
|
|
|
|
hibernateJpaModelGenTool {
|
|
|
|
description = "Dependencies for running the Hibernate JPA Metamodel Generator AnnotationProcessor tool"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-10-09 14:24:27 -04:00
|
|
|
dependencies {
|
|
|
|
compile( project( ':hibernate-core' ) )
|
|
|
|
compile( project( ':hibernate-entitymanager' ) )
|
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 )
|
2013-11-22 15:51:56 -05:00
|
|
|
|
2011-03-07 17:20:53 -05:00
|
|
|
testCompile( project(':hibernate-testing') )
|
2012-07-12 10:33:36 -04:00
|
|
|
testCompile( project(path: ':hibernate-entitymanager', configuration: 'tests') )
|
2013-11-22 15:51:56 -05:00
|
|
|
|
2010-10-09 14:24:27 -04:00
|
|
|
testRuntime( libraries.javassist )
|
2013-11-18 16:36:23 -05:00
|
|
|
|
|
|
|
hibernateJpaModelGenTool( project( ':hibernate-jpamodelgen' ) )
|
2010-10-09 14:24:27 -04:00
|
|
|
}
|
|
|
|
|
2013-04-16 19:25:20 -04:00
|
|
|
def pomName() {
|
|
|
|
return 'Entity versioning support'
|
|
|
|
}
|
|
|
|
|
|
|
|
def pomDescription() {
|
|
|
|
return 'Entity versioning support'
|
|
|
|
}
|
|
|
|
|
2013-11-22 15:51:56 -05:00
|
|
|
|
2011-04-01 15:39:49 -04:00
|
|
|
sourceSets {
|
2012-10-28 17:13:14 -04:00
|
|
|
test {
|
|
|
|
ext.enversDemoJavaDir = file( "src/demo/java" )
|
|
|
|
ext.enversDemoResourcesDir = file( "src/demo/resources" )
|
|
|
|
java {
|
|
|
|
srcDir enversDemoJavaDir
|
|
|
|
}
|
|
|
|
resources {
|
|
|
|
srcDir enversDemoResourcesDir
|
|
|
|
}
|
|
|
|
}
|
2011-10-18 00:29:45 -04:00
|
|
|
}
|
2012-02-15 17:31:29 -05:00
|
|
|
|
2013-11-22 19:57:02 -05:00
|
|
|
compileJava {
|
2013-11-22 15:51:56 -05:00
|
|
|
classpath += configurations.hibernateJpaModelGenTool
|
2012-03-18 10:53:04 -04:00
|
|
|
}
|
|
|
|
|
2013-01-23 18:22:03 -05:00
|
|
|
jar {
|
|
|
|
manifest {
|
|
|
|
instruction 'Bundle-Description', 'Hibernate ORM Envers'
|
2013-04-10 14:46:08 -04:00
|
|
|
|
2013-08-13 11:03:29 -04:00
|
|
|
instructionFirst 'Import-Package',
|
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
|
|
|
}
|