Skip to content

Commit

Permalink
build: bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Cubxity committed Feb 5, 2022
1 parent 71003eb commit e142048
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 23 deletions.
4 changes: 2 additions & 2 deletions api/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@

dependencies {
api(kotlin("stdlib"))
api("org.jetbrains.kotlinx", "kotlinx-coroutines-core", "1.5.2")
api("org.jetbrains.kotlinx", "kotlinx-serialization-core", "1.2.2")
api("org.jetbrains.kotlinx", "kotlinx-coroutines-core", "1.6.0")
api("org.jetbrains.kotlinx", "kotlinx-serialization-core", "1.3.2")
}

java {
Expand Down
8 changes: 4 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
kotlin("jvm") version "1.5.31" apply false
kotlin("kapt") version "1.6.0-RC" apply false
id("org.jetbrains.kotlin.plugin.serialization") version "1.5.31" apply false
id("com.github.johnrengelman.shadow") version "7.0.0" apply false
kotlin("jvm") version "1.6.10" apply false
kotlin("kapt") version "1.6.10" apply false
kotlin("plugin.serialization") version "1.6.10" apply false
id("com.github.johnrengelman.shadow") version "7.1.2" apply false
id("net.kyori.blossom") version "1.3.0" apply false
}

Expand Down
2 changes: 1 addition & 1 deletion common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ apply(plugin = "kotlinx-serialization")

dependencies {
api(project(":unifiedmetrics-api"))
implementation("com.charleskorn.kaml", "kaml", "0.36.0")
implementation("com.charleskorn.kaml", "kaml", "0.40.0")
}
2 changes: 1 addition & 1 deletion drivers/influx/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ apply(plugin = "kotlinx-serialization")

dependencies {
compileOnly(project(":unifiedmetrics-api"))
api("com.influxdb", "influxdb-client-java", "3.3.0")
api("com.influxdb", "influxdb-client-java", "4.2.0")
}
4 changes: 2 additions & 2 deletions drivers/prometheus/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ apply(plugin = "kotlinx-serialization")

dependencies {
compileOnly(project(":unifiedmetrics-api"))
api("io.prometheus", "simpleclient_httpserver", "0.12.0")
api("io.prometheus", "simpleclient_pushgateway", "0.12.0")
api("io.prometheus", "simpleclient_httpserver", "0.14.1")
api("io.prometheus", "simpleclient_pushgateway", "0.14.1")
}
26 changes: 13 additions & 13 deletions platforms/fabric/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,20 @@ dependencies {
modImplementation("net.fabricmc:fabric-loader:0.11.7")

modImplementation("net.fabricmc.fabric-api:fabric-api:0.40.1+1.17")
modImplementation("net.fabricmc:fabric-language-kotlin:1.6.5+kotlin.1.5.31")
modImplementation("net.fabricmc:fabric-language-kotlin:1.7.1+kotlin.1.6.10")

api(project(":unifiedmetrics-core"))

include(project(":unifiedmetrics-core"))
include(project(":unifiedmetrics-common"))
include("com.charleskorn.kaml:kaml:0.36.0")
include("com.charleskorn.kaml:kaml-jvm:0.36.0")
include("com.charleskorn.kaml:kaml:0.40.0")
include("com.charleskorn.kaml:kamkaml-jvm:0.40.0")
include("org.snakeyaml:snakeyaml-engine:2.3")
include(project(":unifiedmetrics-api"))
include(project(":unifiedmetrics-driver-influx"))
include("com.influxdb:influxdb-client-java:3.3.0")
include("com.influxdb:influxdb-client-core:3.3.0")
include("com.influxdb:influxdb-client-utils:3.3.0")
include("com.influxdb:influxdb-client-java:4.1.0")
include("com.influxdb:influxdb-client-core:4.1.0")
include("com.influxdb:influxdb-client-utils:4.1.0")
include("com.google.code.findbugs:jsr305:3.0.2")
include("com.squareup.retrofit2:retrofit:2.9.0")
include("com.squareup.okhttp3:okhttp:4.7.2")
Expand All @@ -54,13 +54,13 @@ dependencies {
include("com.squareup.retrofit2:converter-scalars:2.9.0")
include("com.squareup.retrofit2:converter-gson:2.9.0")
include(project(":unifiedmetrics-driver-prometheus"))
include("io.prometheus:simpleclient_httpserver:0.12.0")
include("io.prometheus:simpleclient:0.12.0")
include("io.prometheus:simpleclient_tracer_otel:0.12.0")
include("io.prometheus:simpleclient_tracer_common:0.12.0")
include("io.prometheus:simpleclient_tracer_otel_agent:0.12.0")
include("io.prometheus:simpleclient_common:0.12.0")
include("io.prometheus:simpleclient_pushgateway:0.12.0")
include("io.prometheus:simpleclient_httpserver:0.14.1")
include("io.prometheus:simpleclient:0.14.1")
include("io.prometheus:simpleclient_tracer_otel:0.14.1")
include("io.prometheus:simpleclient_tracer_common:0.14.1")
include("io.prometheus:simpleclient_tracer_otel_agent:0.14.1")
include("io.prometheus:simpleclient_common:0.14.1")
include("io.prometheus:simpleclient_pushgateway:0.14.1")
}

loom {
Expand Down

0 comments on commit e142048

Please sign in to comment.