-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathbuild.gradle
More file actions
16 lines (12 loc) · 705 Bytes
/
build.gradle
File metadata and controls
16 lines (12 loc) · 705 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
description = "Testcontainers :: JDBC :: ClickHouse"
dependencies {
api project(':testcontainers')
api project(':testcontainers-jdbc')
compileOnly project(':testcontainers-r2dbc')
compileOnly(group: 'com.clickhouse', name: 'clickhouse-r2dbc', version: '0.9.8', classifier: 'http')
testImplementation project(':testcontainers-jdbc-test')
testRuntimeOnly(group: 'com.clickhouse', name: 'clickhouse-jdbc', version: '0.9.8', classifier: 'all')
testImplementation 'com.clickhouse:client-v2:0.9.8'
testImplementation testFixtures(project(':testcontainers-r2dbc'))
testRuntimeOnly(group: 'com.clickhouse', name: 'clickhouse-r2dbc', version: '0.9.8', classifier: 'http')
}