2018-03-30 00:16:12 -04:00
|
|
|
import org.apache.tools.ant.filters.ReplaceTokens
|
|
|
|
|
2012-02-29 11:30:40 -05:00
|
|
|
/*
|
2015-05-19 00:23:35 -04:00
|
|
|
* Hibernate, Relational Persistence for Idiomatic Java
|
2012-02-29 11:30:40 -05:00
|
|
|
*
|
2015-05-19 00:23:35 -04:00
|
|
|
* 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>.
|
2012-02-29 11:30:40 -05:00
|
|
|
*/
|
2018-01-10 16:06:58 -05:00
|
|
|
|
2020-04-06 13:21:11 -04:00
|
|
|
description = 'Integrate support for Spatial/GIS data into Hibernate O/RM'
|
|
|
|
|
2018-01-10 16:06:58 -05:00
|
|
|
apply from: rootProject.file( 'gradle/published-java-module.gradle' )
|
2021-07-14 12:44:35 -04:00
|
|
|
apply plugin: 'org.hibernate.matrix-test'
|
2013-05-06 16:26:28 -04:00
|
|
|
|
2015-04-30 00:21:38 -04:00
|
|
|
|
2011-07-23 09:39:27 -04:00
|
|
|
dependencies {
|
2021-09-22 18:52:06 -04:00
|
|
|
compile project(':hibernate-core')
|
|
|
|
compile libraries.geolatte
|
2018-03-30 00:16:12 -04:00
|
|
|
|
2021-09-22 18:52:06 -04:00
|
|
|
compileOnly libraries.postgresql
|
2015-11-30 04:04:09 -05:00
|
|
|
|
2021-09-22 18:52:06 -04:00
|
|
|
testCompile project(':hibernate-testing')
|
2021-09-29 03:09:58 -04:00
|
|
|
testCompile project(':hibernate-ant')
|
2021-09-22 18:52:06 -04:00
|
|
|
testCompile project( path: ':hibernate-core', configuration: 'tests' )
|
2021-07-19 15:57:45 -04:00
|
|
|
|
2021-09-22 18:52:06 -04:00
|
|
|
testCompile libraries.jakarta_validation
|
|
|
|
testCompile libraries.jandex
|
|
|
|
testCompile libraries.classmate
|
|
|
|
testCompile libraries.jakarta_validator
|
|
|
|
testCompile libraries.dom4j
|
2021-08-26 17:45:36 -04:00
|
|
|
|
2021-09-22 18:52:06 -04:00
|
|
|
testImplementation libraries.postgresql
|
2016-02-20 11:50:13 -05:00
|
|
|
|
2021-09-22 18:52:06 -04:00
|
|
|
testRuntime libraries.jakarta_el
|
|
|
|
testRuntime 'jaxen:jaxen:1.1'
|
|
|
|
testRuntime libraries.byteBuddy
|
2011-07-23 09:39:27 -04:00
|
|
|
}
|
|
|
|
|
2012-02-29 11:30:40 -05:00
|
|
|
sourceSets.test.resources {
|
|
|
|
setSrcDirs(['src/test/java', 'src/test/resources'])
|
2011-07-23 09:39:27 -04:00
|
|
|
}
|
2021-08-26 10:43:33 -04:00
|
|
|
|
|
|
|
tasks.test {
|
2021-08-26 17:45:36 -04:00
|
|
|
enabled = ['pgsql', 'cockroachdb'].contains( project.db )
|
2021-04-13 12:13:30 -04:00
|
|
|
}
|
|
|
|
|
2021-08-26 17:45:36 -04:00
|
|
|
tasks.test.include '**/*'
|
2021-04-13 12:13:30 -04:00
|
|
|
|