diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index b52fb7e..a9db115 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-9.5.0-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-9.6.1-bin.zip networkTimeout=10000 retries=0 retryBackOffMs=500 diff --git a/gradlew b/gradlew index b9bb139..249efbb 100755 --- a/gradlew +++ b/gradlew @@ -20,7 +20,7 @@ ############################################################################## # -# Gradle start up script for POSIX generated by Gradle. +# gradlew start up script for POSIX generated by Gradle. # # Important for running: # @@ -29,7 +29,7 @@ # bash, then to run this script, type that shell name before the whole # command line, like: # -# ksh Gradle +# ksh gradlew # # Busybox and similar reduced shells will NOT work, because this script # requires all of these POSIX shell features: diff --git a/gradlew.bat b/gradlew.bat index aa5f10b..8508ef6 100644 --- a/gradlew.bat +++ b/gradlew.bat @@ -19,7 +19,7 @@ @if "%DEBUG%"=="" @echo off @rem ########################################################################## @rem -@rem Gradle startup script for Windows +@rem gradlew startup script for Windows @rem @rem ########################################################################## @@ -72,7 +72,7 @@ echo location of your Java installation. 1>&2 -@rem Execute Gradle +@rem Execute gradlew @rem endlocal doesn't take effect until after the line is parsed and variables are expanded @rem which allows us to clear the local environment before executing the java command endlocal & "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %* & call :exitWithErrorLevel diff --git a/helm-values-intellij-plugin/build.gradle.kts b/helm-values-intellij-plugin/build.gradle.kts index cb1af92..46405da 100644 --- a/helm-values-intellij-plugin/build.gradle.kts +++ b/helm-values-intellij-plugin/build.gradle.kts @@ -35,7 +35,7 @@ dependencies { api(projects.helmValuesShared) { exclude(module = "slf4j-api") } - api("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.21.3") + api("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.22.0") intellijPlatform { intellijIdeaCommunity(intellijPlatformVersion) bundledModule("com.intellij.modules.json") @@ -43,7 +43,7 @@ dependencies { zipSigner() testFramework(Platform) } - testImplementation("io.mockk:mockk:1.14.9") + testImplementation("io.mockk:mockk:1.14.11") testImplementation("junit:junit:4.13.2") testImplementation(projects.helmValuesTest) { exclude("junit-jupiter-api") diff --git a/helm-values-shared/build.gradle.kts b/helm-values-shared/build.gradle.kts index 645610c..c0fb4f4 100644 --- a/helm-values-shared/build.gradle.kts +++ b/helm-values-shared/build.gradle.kts @@ -10,13 +10,13 @@ kotlin { } dependencies { - api("org.apache.httpcomponents.client5:httpclient5:5.6.1") + api("org.apache.httpcomponents.client5:httpclient5:5.6.2") api("org.apache.commons:commons-compress:1.27.1") { api("org.apache.commons:commons-lang3:3.20.0") } - api("com.fasterxml.jackson.core:jackson-databind:2.21.3") - api("com.fasterxml.jackson.module:jackson-module-kotlin:2.21.3") - api("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.21.3") + api("com.fasterxml.jackson.core:jackson-databind:2.22.0") + api("com.fasterxml.jackson.module:jackson-module-kotlin:2.22.0") + api("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.22.0") api("com.github.java-json-tools:json-patch:1.13") testImplementation(projects.helmValuesTest) } diff --git a/helm-values-test/build.gradle.kts b/helm-values-test/build.gradle.kts index fb1dcd5..151a646 100644 --- a/helm-values-test/build.gradle.kts +++ b/helm-values-test/build.gradle.kts @@ -8,9 +8,9 @@ kotlin { } dependencies { - api("org.junit.jupiter:junit-jupiter-api:6.0.3") + api("org.junit.jupiter:junit-jupiter-api:6.1.1") api("org.assertj:assertj-core:3.27.7") - api("net.javacrumbs.json-unit:json-unit-assertj:5.1.1") + api("net.javacrumbs.json-unit:json-unit-assertj:5.1.2") api("org.wiremock:wiremock:3.13.2") implementation("org.jetbrains.kotlin:kotlin-stdlib") }