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:
Yoann Rodière 2021-04-16 15:38:55 +02:00
parent 4264bc55ac
commit d7e85a3c3c
1 changed files with 3 additions and 4 deletions

View File

@ -19,10 +19,6 @@ dependencies {
compile( libraries.postgresql )
compile(libraries.dom4j) {
transitive = false
}
testCompile(libraries.junit)
testCompile(project(':hibernate-testing'))
testCompile( project( path: ':hibernate-core', configuration: 'tests' ) )
@ -34,6 +30,9 @@ dependencies {
// for test runtime
transitive = true
}
testCompile(libraries.dom4j) {
transitive = false
}
testRuntime( libraries.expression_language )