Skip to content

Commit

Permalink
update dependencies to newer version
Browse files Browse the repository at this point in the history
Signed-off-by: imanushin <[email protected]>
imanushin committed Dec 11, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent cb858c4 commit aac25e5
Showing 5 changed files with 17 additions and 24 deletions.
25 changes: 13 additions & 12 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
[versions]
dokka = "1.8.20"
dokka = "1.9.10"
spek = "2.0.19"
unbrokenDome = "0.5.0"
okhttp = "4.11.0"
jackson = "2.15.2"
jackson = "2.16.0"
# No need to keep the same Kotlin version with Gradle, at least because kotlin runtime is a transitive dependency of okhttp
kotlin = "1.8.21"
junit = "5.9.3"
kotlin = "1.9.21"
junit = "5.10.1"

[libraries]
snakeyaml = "org.yaml:snakeyaml:2.0"
assertk = "com.willowtreeapps.assertk:assertk-jvm:0.26.1"
snakeyaml = "org.yaml:snakeyaml:2.2"
assertk = "com.willowtreeapps.assertk:assertk-jvm:0.28.0"
# version 1.13.8 doesn't work because of JVM 11 bytecode despite of https://github.com/mockk/mockk/pull/1161
mockk = "io.mockk:mockk:1.13.5"
tabbedCodeExtension = "com.bmuschko:asciidoctorj-tabbed-code-extension:0.3"
orgJson = "org.json:json:20230227"
orgJson = "org.json:json:20231013"
jsonPath = "com.jayway.jsonpath:json-path:2.8.0"
kotestAssertions = "io.kotest:kotest-assertions-core:5.6.2"
kotestAssertions = "io.kotest:kotest-assertions-core:5.8.0"
jacksonDataBind = { module = "com.fasterxml.jackson.core:jackson-databind", version.ref = "jackson" }
jacksonDataFormatYaml = { module = "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml", version.ref = "jackson" }
okHttp = { module = "com.squareup.okhttp3:okhttp", version.ref = "okhttp" }
@@ -29,12 +30,12 @@ junitEngine = { module = "org.junit.jupiter:junit-jupiter-engine", version.ref =
junit = { module = "org.junit.jupiter:junit-jupiter", version.ref = "junit" }

[plugins]
detekt = { id = "io.gitlab.arturbosch.detekt", version = "1.23.0" }
gradlePublish = { id = "com.gradle.plugin-publish", version = "1.2.0" }
dokka = { id = "org.jetbrains.dokka", version = "1.8.20" }
detekt = { id = "io.gitlab.arturbosch.detekt", version = "1.23.4" }
gradlePublish = { id = "com.gradle.plugin-publish", version = "1.2.1" }
dokka = { id = "org.jetbrains.dokka", version.ref = "dokka" }
kotlinJvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }
asciidoctor = { id = "org.asciidoctor.jvm.convert", version = "3.3.2" }
benManesVersions = { id = "com.github.ben-manes.versions", version = "0.47.0" }
benManesVersions = { id = "com.github.ben-manes.versions", version = "0.50.0" }
binaryCompatibilityValidator = { id = "org.jetbrains.kotlinx.binary-compatibility-validator", version = "0.13.2" }

[bundles]
Original file line number Diff line number Diff line change
@@ -42,9 +42,7 @@ object HelmPluginTest : Spek({
describe("applying the helm plugin") {

it("project can be evaluated successfully") {
assertThat {
project.evaluate()
}.isSuccess()
project.evaluate()
}


Original file line number Diff line number Diff line change
@@ -26,9 +26,7 @@ object HelmCommandsPluginTest : Spek({


it("project can be evaluated successfully") {
assertThat {
project.evaluate()
}.isSuccess()
project.evaluate()
}


Original file line number Diff line number Diff line change
@@ -23,9 +23,7 @@ object HelmPublishPluginTest : Spek({
describe("applying the helm-publish plugin") {

it("project can be evaluated successfully") {
assertThat {
project.evaluate()
}.isSuccess()
project.evaluate()
}


Original file line number Diff line number Diff line change
@@ -46,9 +46,7 @@ object HelmReleasesPluginTest : Spek({
describe("when applying the helm-releases plugin") {

it("project can be evaluated successfully") {
assertThat {
project.evaluate()
}.isSuccess()
project.evaluate()
}
}

0 comments on commit aac25e5

Please sign in to comment.