database/jdbc-query/build.gradle

14 lines
375 B
Groovy
Raw Permalink Normal View History

2022-02-10 18:41:26 +01:00
dependencies {
api project(':jdbc-connection-pool')
testImplementation project(':jdbc-test')
2023-12-16 21:03:19 +01:00
testImplementation testLibs.derby
testImplementation testLibs.hsqldb
testImplementation testLibs.h2
testImplementation testLibs.testcontainers
testImplementation testLibs.testcontainers.junit.jupiter
2022-02-10 18:41:26 +01:00
}
test {
systemProperty 'user.timezone', 'GMT'
}