diff --git a/build.gradle.kts b/build.gradle.kts index d5518a3..d1d90be 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -4,10 +4,10 @@ import org.jetbrains.compose.desktop.application.dsl.TargetFormat import org.jetbrains.kotlin.gradle.tasks.KotlinCompile plugins { - val kotlinVersion = "1.9.0" + val kotlinVersion = "1.9.10" kotlin("jvm") version kotlinVersion kotlin("plugin.serialization") version kotlinVersion - id("org.jetbrains.compose") version "1.4.3" + id("org.jetbrains.compose") version "1.5.1" id("io.gitlab.arturbosch.detekt") version "1.23.1" } @@ -23,7 +23,7 @@ dependencies { implementation(compose.desktop.currentOs) implementation(compose.materialIconsExtended) - val ktorVersion = "2.3.2" + val ktorVersion = "2.3.4" implementation("io.ktor:ktor-client-core:$ktorVersion") implementation("io.ktor:ktor-client-cio:$ktorVersion") implementation("io.ktor:ktor-client-content-negotiation:$ktorVersion") @@ -41,12 +41,12 @@ dependencies { val kermitVersion = "2.0.0-RC5" implementation("co.touchlab:kermit:$kermitVersion") - implementation("io.sentry:sentry:6.27.0") + implementation("io.sentry:sentry:6.29.0") - implementation("org.apache.pdfbox:pdfbox:3.0.0-RC1") + implementation("org.apache.pdfbox:pdfbox:3.0.0") runtimeOnly("org.jetbrains.kotlinx:kotlinx-coroutines-swing:1.7.3") // Adds a Main Dispatcher for Desktop - implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.5.1") + implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.0") implementation(kotlin("reflect")) testImplementation(kotlin("test")) diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index 033e24c..7f93135 100644 Binary files a/gradle/wrapper/gradle-wrapper.jar and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 9f4197d..ac72c34 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/gradlew b/gradlew index fcb6fca..0adc8e1 100755 --- a/gradlew +++ b/gradlew @@ -83,7 +83,8 @@ done # This is normally unused # shellcheck disable=SC2034 APP_BASE_NAME=${0##*/} -APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit +# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) +APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit # Use the maximum available, or set MAX_FD != -1 to use that value. MAX_FD=maximum diff --git a/settings.gradle.kts b/settings.gradle.kts index 040438b..a72bd2c 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -8,7 +8,7 @@ pluginManagement { rootProject.name = "Mediator" plugins { - id("org.danilopianini.gradle-pre-commit-git-hooks") version "1.1.9" + id("org.danilopianini.gradle-pre-commit-git-hooks") version "1.1.10" } gitHooks {