database/jdbc-query/build.gradle
2022-02-10 18:41:26 +01:00

7 lines
452 B
Groovy

dependencies {
api project(":jdbc-connection-pool")
testImplementation "org.apache.derby:derby:${project.property('derby.version')}"
testImplementation "org.testcontainers:testcontainers:${project.property('testcontainers.version')}"
testImplementation "org.testcontainers:junit-jupiter:${project.property('testcontainers.version')}"
testImplementation "org.testcontainers:oracle-xe:${project.property('testcontainers.version')}"
}