-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathbuild.gradle
More file actions
23 lines (16 loc) · 725 Bytes
/
build.gradle
File metadata and controls
23 lines (16 loc) · 725 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
description = "Testcontainers :: JDBC :: Oracle Database Free"
dependencies {
api project(':testcontainers-jdbc')
compileOnly project(':testcontainers-r2dbc')
compileOnly 'com.oracle.database.r2dbc:oracle-r2dbc:1.3.0'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:6.0.0'
testImplementation 'org.junit.jupiter:junit-jupiter:5.13.4'
testImplementation project(':testcontainers-jdbc-test')
testImplementation 'com.oracle.database.jdbc:ojdbc11:23.9.0.25.07'
compileOnly 'org.jetbrains:annotations:26.0.2'
testImplementation testFixtures(project(':testcontainers-r2dbc'))
testRuntimeOnly 'com.oracle.database.r2dbc:oracle-r2dbc:1.3.0'
}
test {
useJUnitPlatform()
}