import org.apache.tools.ant.filters.ReplaceTokens /* * 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 . */ 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 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', 'cockroachdb'].contains( project.db ) } tasks.test.include '**/*'