Skip to content

Commit

Permalink
build: upgrade dependencies
Browse files Browse the repository at this point in the history
The following dependencies have been upgraded:
- Kotlin (1.5.30 -> 1.5.31)
- Velocity API (3.0.0 -> 3.0.1)
- KAML (0.35.3 -> 0.36.0)
  • Loading branch information
Cubxity committed Sep 30, 2021
1 parent e8d0cba commit 6936ef5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
kotlin("jvm") version "1.5.30" apply false
kotlin("kapt") version "1.5.30" apply false
id("org.jetbrains.kotlin.plugin.serialization") version "1.5.30" apply false
kotlin("jvm") version "1.5.31" apply false
kotlin("kapt") version "1.5.31" 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
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.35.3")
implementation("com.charleskorn.kaml", "kaml", "0.36.0")
}
4 changes: 2 additions & 2 deletions platforms/velocity/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ repositories {
dependencies {
api(project(":unifiedmetrics-core"))

compileOnly("com.velocitypowered:velocity-api:3.0.0")
kapt("com.velocitypowered:velocity-api:3.0.0")
compileOnly("com.velocitypowered:velocity-api:3.0.1")
kapt("com.velocitypowered:velocity-api:3.0.1")
}

tasks {
Expand Down

0 comments on commit 6936ef5

Please sign in to comment.