forked from hibernate/hibernate-orm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhibernate-spatial.gradle
45 lines (34 loc) · 1.22 KB
/
hibernate-spatial.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
import org.apache.tools.ant.filters.ReplaceTokens
/*
* 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>.
*/
description = 'Integrate support for Spatial/GIS data into Hibernate O/RM'
apply from: rootProject.file( 'gradle/published-java-module.gradle' )
apply plugin: 'hibernate-matrix-testing'
dependencies {
compile( project(':hibernate-core') )
compile( libraries.geolatte )
compile( libraries.postgresql )
compile(libraries.dom4j) {
transitive = false
}
testCompile(libraries.junit)
testCompile(project(':hibernate-testing'))
testCompile([group: 'commons-dbcp', name: 'commons-dbcp', version: '1.4'])
testCompile(libraries.validation)
testCompile(libraries.jandex)
testCompile(libraries.classmate)
testCompile(libraries.validator) {
// for test runtime
transitive = true
}
testRuntime( libraries.expression_language )
testRuntime('jaxen:jaxen:1.1')
testRuntime(libraries.byteBuddy)
}
sourceSets.test.resources {
setSrcDirs(['src/test/java', 'src/test/resources'])
}