database/jdbc-oracle/build.gradle

13 lines
341 B
Groovy
Raw Permalink Normal View History

dependencies {
api project(':jdbc-query')
implementation libs.oracle
testImplementation project(':jdbc-test')
2023-12-16 21:03:19 +01:00
testImplementation testLibs.testcontainers
testImplementation testLibs.testcontainers.junit.jupiter
testImplementation testLibs.testcontainers.oracle.xe
}
test {
systemProperty 'user.timezone', 'GMT'
}