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