Skip to content

Commit

Permalink
Merge pull request #6 from monta-app/renovate/gradle-all
Browse files Browse the repository at this point in the history
chore(deps): update upgrade all non-major gradle dependencies
  • Loading branch information
morten-andersen authored Dec 17, 2024
2 parents 25baad3 + e628f4e commit ec44902
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ plugins {
// Apply the org.jetbrains.kotlin.jvm Plugin to add support for Kotlin.
id("org.jetbrains.kotlin.jvm") apply false
// Linter
id("org.jlleitschuh.gradle.ktlint") version "12.1.1"
id("org.jlleitschuh.gradle.ktlint") version "12.1.2"
// Apply the java-library plugin for API and implementation separation.
`java-library`
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
kotlinVersion=2.0.20
kotlinVersion=2.1.0
javaToolChainVersion=17
libraryVersion=1.0.4
org.gradle.jvmargs=-Xmx4096m
Expand Down
4 changes: 2 additions & 2 deletions server/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ dependencies {
implementation(coroutines.bundles.implementation)

// Core
implementation(platform("io.ktor:ktor-bom:2.3.12"))
implementation(platform("io.ktor:ktor-bom:2.3.13"))
implementation("io.ktor:ktor-server-core-jvm")
implementation("io.ktor:ktor-server-netty-jvm")
implementation("io.ktor:ktor-server-host-common-jvm")
Expand All @@ -41,7 +41,7 @@ dependencies {
implementation(jackson.bundles.implementation)

// Database Libraries
implementation(platform("org.jetbrains.exposed:exposed-bom:0.54.0"))
implementation(platform("org.jetbrains.exposed:exposed-bom:0.57.0"))
implementation("org.jetbrains.exposed:exposed-core")
implementation("org.jetbrains.exposed:exposed-dao")
implementation("org.jetbrains.exposed:exposed-jdbc")
Expand Down
8 changes: 4 additions & 4 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencyResolutionManagement {

// Kotlin coroutines
create("coroutines") {
version("coroutines", "1.8.1")
version("coroutines", "1.9.0")
library("platform", "org.jetbrains.kotlinx", "kotlinx-coroutines-bom").versionRef("coroutines")
library("core", "org.jetbrains.kotlinx", "kotlinx-coroutines-core").withoutVersion()
library("jdk8", "org.jetbrains.kotlinx", "kotlinx-coroutines-jdk8").withoutVersion()
Expand All @@ -31,7 +31,7 @@ dependencyResolutionManagement {

// Jackson serialization
create("jackson") {
version("jackson", "2.17.2")
version("jackson", "2.18.2")
library("platform", "com.fasterxml.jackson", "jackson-bom").versionRef("jackson")
library("core", "com.fasterxml.jackson.core", "jackson-core").withoutVersion()
library("annotations", "com.fasterxml.jackson.core", "jackson-annotations").withoutVersion()
Expand All @@ -45,7 +45,7 @@ dependencyResolutionManagement {
create("kotest") {
version("kotest", "5.9.1")
version("strikt", "0.35.1")
version("jupiter", "5.10.3")
version("jupiter", "5.11.4")

library("platform", "io.kotest", "kotest-bom").versionRef("kotest")
library("junit5", "io.kotest", "kotest-runner-junit5-jvm").withoutVersion()
Expand All @@ -60,7 +60,7 @@ dependencyResolutionManagement {

// Logback
create("logback") {
version("logback", "1.5.6")
version("logback", "1.5.12")
library("logback", "ch.qos.logback", "logback-classic").versionRef("logback")
bundle("implementation", listOf("logback"))
}
Expand Down

0 comments on commit ec44902

Please sign in to comment.