database/jdbc-mariadb/build.gradle

14 lines
379 B
Groovy
Raw Normal View History

dependencies {
api project(':jdbc-query')
implementation libs.mariadb
testImplementation project(':jdbc-test')
2023-12-16 21:03:19 +01:00
testImplementation testLibs.testcontainers
testImplementation testLibs.testcontainers.junit.jupiter
testImplementation testLibs.testcontainers.mariadb
}
test {
systemProperty 'user.timezone', 'GMT'
2023-10-17 16:32:20 +02:00
environment 'DOCKER_BUILDKIT', '0'
}