Skip to content

Commit

Permalink
chore: align more versions for Java 21 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
bobeal committed Nov 27, 2023
1 parent 460900e commit ba25517
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ buildscript {
}
}

extra["springCloudVersion"] = "2022.0.2"
extra["springCloudVersion"] = "2023.0.0-RC1"

plugins {
// https://docs.spring.io/spring-boot/docs/current/gradle-plugin/reference/htmlsingle/#reacting-to-other-plugins.java
Expand All @@ -24,7 +24,7 @@ plugins {
kotlin("jvm") version "1.9.21" apply false
kotlin("plugin.spring") version "1.9.21" apply false
id("com.google.cloud.tools.jib") version "3.4.0" apply false
id("io.gitlab.arturbosch.detekt") version "1.23.3" apply false
id("io.gitlab.arturbosch.detekt") version "1.23.4" apply false
id("org.sonarqube") version "4.4.1.3373"
jacoco
}
Expand Down Expand Up @@ -102,7 +102,7 @@ subprojects {
configurations.matching { it.name == "detekt" }.all {
resolutionStrategy.eachDependency {
if (requested.group == "org.jetbrains.kotlin") {
useVersion("1.9.10")
useVersion("1.9.21")
}
}
}
Expand All @@ -126,7 +126,7 @@ subprojects {

// see https://docs.gradle.org/current/userguide/jacoco_plugin.html for configuration instructions
jacoco {
toolVersion = "0.8.7"
toolVersion = "0.8.9"
}
tasks.test {
finalizedBy(tasks.jacocoTestReport) // report is always generated after tests run
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class UriUtilsTests {
}
Assertions.assertEquals(
"The supplied identifier was expected to be an URI but it is not: https://just\\AString " +
"(cause was: java.net.URISyntaxException: Illegal character in authority at index 8: " +
"(cause was: java.net.URISyntaxException: Illegal character in authority at index 12: " +
"https://just\\AString)",
exception.message
)
Expand Down

0 comments on commit ba25517

Please sign in to comment.