diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2252470..8d1ee31 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -55,7 +55,7 @@ jobs: run: | PROPERTIES="$(./gradlew properties --console=plain -q)" VERSION="$(echo "$PROPERTIES" | grep "^version:" | cut -f2- -d ' ')" - PLUGIN_VERIFIER_CONFIGURATION="-PintellijPluginSinceBuild=251 -PintellijPlatformVersion=2025.1.4.1" + PLUGIN_VERIFIER_CONFIGURATION="-PintellijPluginSinceBuild=251 -PintellijPluginUntilBuild=252.* -PintellijPlatformVersion=2025.1.4.1" echo "version=$VERSION" >> $GITHUB_OUTPUT echo "pluginVerifierHomeDir=~/.pluginVerifier" >> $GITHUB_OUTPUT diff --git a/helm-values-intellij-plugin/build.gradle.kts b/helm-values-intellij-plugin/build.gradle.kts index a60269a..34b4ca9 100644 --- a/helm-values-intellij-plugin/build.gradle.kts +++ b/helm-values-intellij-plugin/build.gradle.kts @@ -18,7 +18,7 @@ plugins { // Gradle IntelliJ Plugin id("org.jetbrains.intellij.platform") version "2.5.0" // Gradle Changelog Plugin - id("org.jetbrains.changelog") version "2.4.0" + id("org.jetbrains.changelog") version "2.5.0" } repositories { @@ -35,7 +35,7 @@ dependencies { api(projects.helmValuesShared) { exclude(module = "slf4j-api") } - api("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.20.0") + api("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.20.1") intellijPlatform { intellijIdeaCommunity(intellijPlatformVersion) bundledModule("com.intellij.modules.json") diff --git a/helm-values-shared/build.gradle.kts b/helm-values-shared/build.gradle.kts index dd45557..068a997 100644 --- a/helm-values-shared/build.gradle.kts +++ b/helm-values-shared/build.gradle.kts @@ -1,6 +1,6 @@ plugins { kotlin("jvm") - id("org.jetbrains.dokka") version "2.0.0" + id("org.jetbrains.dokka") version "2.1.0" `maven-publish` signing } @@ -12,11 +12,11 @@ kotlin { dependencies { api("org.apache.httpcomponents.client5:httpclient5:5.5.1") api("org.apache.commons:commons-compress:1.27.1") { - api("org.apache.commons:commons-lang3:3.19.0") + api("org.apache.commons:commons-lang3:3.20.0") } - api("com.fasterxml.jackson.core:jackson-databind:2.20.0") - api("com.fasterxml.jackson.module:jackson-module-kotlin:2.20.0") - api("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.20.0") + api("com.fasterxml.jackson.core:jackson-databind:2.20.1") + api("com.fasterxml.jackson.module:jackson-module-kotlin:2.20.1") + api("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.20.1") 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 7142563..56737d3 100644 --- a/helm-values-test/build.gradle.kts +++ b/helm-values-test/build.gradle.kts @@ -8,10 +8,10 @@ kotlin { } dependencies { - api("org.junit.jupiter:junit-jupiter-api:6.0.0") + api("org.junit.jupiter:junit-jupiter-api:6.0.1") api("org.assertj:assertj-core:3.27.6") - api("net.javacrumbs.json-unit:json-unit-assertj:4.1.1") - api("org.wiremock:wiremock:3.13.1") + api("net.javacrumbs.json-unit:json-unit-assertj:5.1.0") + api("org.wiremock:wiremock:3.13.2") implementation("org.jetbrains.kotlin:kotlin-stdlib") }