HHH-14563 Clarify that hibernate-spatial only needs dom4j for tests
For org.hibernate.spatial.testing.TestDataReader, to be precise.
This commit is contained in:
parent
4264bc55ac
commit
d7e85a3c3c
|
@ -19,10 +19,6 @@ dependencies {
|
||||||
|
|
||||||
compile( libraries.postgresql )
|
compile( libraries.postgresql )
|
||||||
|
|
||||||
compile(libraries.dom4j) {
|
|
||||||
transitive = false
|
|
||||||
}
|
|
||||||
|
|
||||||
testCompile(libraries.junit)
|
testCompile(libraries.junit)
|
||||||
testCompile(project(':hibernate-testing'))
|
testCompile(project(':hibernate-testing'))
|
||||||
testCompile( project( path: ':hibernate-core', configuration: 'tests' ) )
|
testCompile( project( path: ':hibernate-core', configuration: 'tests' ) )
|
||||||
|
@ -34,6 +30,9 @@ dependencies {
|
||||||
// for test runtime
|
// for test runtime
|
||||||
transitive = true
|
transitive = true
|
||||||
}
|
}
|
||||||
|
testCompile(libraries.dom4j) {
|
||||||
|
transitive = false
|
||||||
|
}
|
||||||
|
|
||||||
testRuntime( libraries.expression_language )
|
testRuntime( libraries.expression_language )
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue