Skip to content

Commit

Permalink
Upgrade sonar plugin to 5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gmuth committed May 20, 2024
1 parent d0cb48e commit 041c4a6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import org.jetbrains.dokka.gradle.DokkaTask
plugins {
id("org.jetbrains.kotlin.jvm") version "1.7.22"
id("org.jetbrains.dokka") version "1.7.20"
id("org.sonarqube") version "4.4.1.3373" // https://plugins.gradle.org/plugin/org.sonarqube
id("org.sonarqube") version "5.0.0.4638" // https://plugins.gradle.org/plugin/org.sonarqube
//id("org.sonarqube") version "3.5.0.2730" // supports java 8, dropped with 4.1
id("maven-publish")
id("java-library")
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/de/gmuth/ipp/client/IppSubscription.kt
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ class IppSubscription(
Thread.sleep(pollEvery.toMillis())
}
} catch (clientErrorNotFoundException: ClientErrorNotFoundException) {
logger.info { clientErrorNotFoundException.response!!.statusMessage.toString() }
logger.info { clientErrorNotFoundException.response.statusMessage.toString() }
}
}

Expand Down

0 comments on commit 041c4a6

Please sign in to comment.