File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,8 @@ repositories {
2323 mavenCentral()
2424}
2525
26+ val ch_java_client_version: String by extra
27+
2628dependencies {
2729 // application dependencies
2830 implementation(" io.ktor:ktor-server-core-jvm" )
@@ -33,8 +35,8 @@ dependencies {
3335 implementation(" io.ktor:ktor-serialization-kotlinx-json:$ktor_version " )
3436
3537 // https://mvnrepository.com/artifact/com.clickhouse/client-v2
36- implementation(" com.clickhouse:client-v2:$ch_java_client_version -SNAPSHOT:all" )
37- // implementation("com.clickhouse:client-v2:$ch_java_client_version:all") // release version
38+ implementation(" com.clickhouse:client-v2:${ ch_java_client_version} -SNAPSHOT:all" )
39+ // implementation("com.clickhouse:client-v2:${ ch_java_client_version} :all") // release version
3840
3941 testImplementation(" io.ktor:ktor-server-test-host-jvm" )
4042 testImplementation(" org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version " )
Original file line number Diff line number Diff line change @@ -25,12 +25,14 @@ repositories {
2525 maven(" https://s01.oss.sonatype.org/content/repositories/snapshots/" ) // for nightly builds
2626}
2727
28+ val ch_java_client_version: String by extra
29+
2830dependencies {
2931
3032 // -- clickhouse dependencies
3133 // Main dependency
32- implementation(" com.clickhouse:client-v2:$ch_java_client_version -SNAPSHOT:all" ) // local or nightly build
33- // implementation("com.clickhouse:client-v2:$ch_java_client_version:all") // release version
34+ implementation(" com.clickhouse:client-v2:${ ch_java_client_version} -SNAPSHOT:all" ) // local or nightly build
35+ // implementation("com.clickhouse:client-v2:${ ch_java_client_version} :all") // release version
3436
3537 // -- application dependencies
3638 implementation(" org.springframework.boot:spring-boot-starter-actuator" )
You can’t perform that action at this time.
0 commit comments