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