Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deps maintenance #49

Merged
merged 1 commit into from
Dec 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/qodana_code_quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- name: 'Qodana Scan'
uses: JetBrains/qodana-action@v2024.2.3
uses: JetBrains/qodana-action@v2024.3.3
env:
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}
with:
Expand Down
10 changes: 5 additions & 5 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[versions]
detekt = "1.23.7" # Note: Plugin versions must be updated in the settings.gradle.kts too
kotlin = "2.0.21" # Note: Plugin versions must be updated in the settings.gradle.kts too
kotlin = "2.1.0" # Note: Plugin versions must be updated in the settings.gradle.kts too

groovy = "3.0.22"
groovy = "3.0.23"
jansi = "2.4.1"
kx-ser = "1.7.3"
logback = "1.5.11"
logback = "1.5.15"
logback-groovy = "1.14.5"
logging = "7.0.0"
logging = "7.0.3"
kord-emoji = "0.5.0"
unleash = "9.2.4"
unleash = "9.2.6"
kmongo-coroutine = "5.1.0"
links-detektor = "1.0.1"

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
17 changes: 13 additions & 4 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,17 +1,26 @@
pluginManagement {
plugins {
// Update this in libs.version.toml when you change it here.
kotlin("jvm") version "2.0.21"
kotlin("plugin.serialization") version "2.0.21"
kotlin("jvm") version "2.1.0"
kotlin("plugin.serialization") version "2.1.0"

// Update this in libs.version.toml when you change it here.
id("io.gitlab.arturbosch.detekt") version "1.23.7"

id("com.github.jakemarsden.git-hooks") version "0.0.2"
id("com.github.johnrengelman.shadow") version "8.1.1"

id("dev.kordex.gradle.docker") version "1.4.2"
id("dev.kordex.gradle.kordex") version "1.4.2"
id("dev.kordex.gradle.docker") version "1.6.0"
id("dev.kordex.gradle.kordex") version "1.6.0"
}

repositories {
gradlePluginPortal()
mavenCentral()

maven("https://snapshots-repo.kordex.dev")
maven("https://releases-repo.kordex.dev")
maven("https://oss.sonatype.org/content/repositories/snapshots")
}
}

Expand Down
Loading