forked from hibernate/hibernate-orm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhibernate-envers.gradle
66 lines (54 loc) · 1.74 KB
/
hibernate-envers.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
apply plugin: 'hibernate-matrix-testing'
configurations {
hibernateJpaModelGenTool {
description = "Dependencies for running the Hibernate JPA Metamodel Generator AnnotationProcessor tool"
}
}
dependencies {
compile( project( ':hibernate-core' ) )
compile( project( ':hibernate-entitymanager' ) )
provided( [group: 'org.hibernate', name: 'hibernate-tools', version: '3.2.0.ga'] )
provided( libraries.ant )
testCompile( project(':hibernate-testing') )
testCompile( project(path: ':hibernate-entitymanager', configuration: 'tests') )
testRuntime( libraries.javassist )
hibernateJpaModelGenTool( project( ':hibernate-jpamodelgen' ) )
}
def pomName() {
return 'Entity versioning support'
}
def pomDescription() {
return 'Entity versioning support'
}
def osgiDescription() {
return pomDescription()
}
sourceSets {
test {
ext {
enversDemoJavaDir = file( "src/demo/java" )
enversDemoResourcesDir = file( "src/demo/resources" )
}
java {
srcDir enversDemoJavaDir
}
resources {
srcDir enversDemoResourcesDir
}
}
}
addMetaGenProcessor( sourceSets.main )
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="2.1.0"',
'javax.persistence.criteria;version="2.1.0"',
'javax.persistence.metamodel;version="2.1.0"',
'javax.persistence.spi;version="2.1.0"',
// optionals
'javax.naming;resolution:=optional',
'org.apache.tools.ant;resolution:=optional'
}
}