database/jdbc-postgresql/build.gradle

12 lines
346 B
Groovy

dependencies {
api project(':jdbc-query')
implementation libs.postgresql
testImplementation project(':jdbc-test')
testImplementation testLibs.testcontainers
testImplementation testLibs.testcontainers.junit.jupiter
testImplementation testLibs.testcontainers.postgresql
}
test {
systemProperty 'user.timezone', 'GMT'
}