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

60 lines
1.5 KiB
Groovy

/*
* 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'
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'] )
}
tasks.test {
enabled = ['pgsql',
'h2',
'pgsql_ci',
'cockroachdb',
'mariadb',
'mysql_ci',
'mysql_docker',
'oracle_docker',
'oracle_ci',
'oracle_rds',
'mssql',
'mssql_ci'
].contains( project.db )
}
tasks.test.include '**/*'