11 lines
245 B
Groovy
11 lines
245 B
Groovy
|
dependencies {
|
||
|
api project(':jdbc-query')
|
||
|
testImplementation project(':jdbc-test')
|
||
|
testImplementation libs.testcontainers
|
||
|
testImplementation libs.testcontainers.junit.jupiter
|
||
|
}
|
||
|
|
||
|
test {
|
||
|
systemProperty 'user.timezone', 'GMT'
|
||
|
}
|