hibernate-orm/hibernate-spatial/hibernate-spatial.gradle

58 lines
1.4 KiB
Groovy
Raw Normal View History

/*
* 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: 'org.hibernate.matrix-test'
2015-04-30 00:21:38 -04:00
dependencies {
api project( ':hibernate-core' )
api libraries.geolatte
compileOnly libraries.postgresql
testImplementation project( ':hibernate-testing' )
testImplementation project( ':hibernate-ant' )
testImplementation project( path: ':hibernate-core', configuration: 'tests' )
testImplementation libraries.jakarta_validation
testImplementation libraries.jandex
testImplementation libraries.classmate
testImplementation libraries.jakarta_validator
testImplementation libraries.dom4j
testImplementation libraries.postgresql
testImplementation libraries.h2gis
testRuntimeOnly libraries.jakarta_el
testRuntimeOnly 'jaxen:jaxen:1.1'
testRuntimeOnly libraries.byteBuddy
}
sourceSets.test.resources {
setSrcDirs( ['src/test/java', 'src/test/resources'] )
}
2021-08-26 10:43:33 -04:00
tasks.test {
2021-11-11 07:08:34 -05:00
enabled = ['pgsql',
'h2',
'pgsql_ci',
'cockroachdb',
'mariadb',
'mysql_ci',
2022-01-04 15:56:20 -05:00
'mysql_docker',
'oracle_docker',
'oracle_ci',
'oracle_rds'
].contains( project.db )
}
tasks.test.include '**/*'