Skip to content

Commit 3647282

Browse files
CID-4411: Fix compatibility and detekt fix.
1 parent c67046c commit 3647282

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ plugins {
55
id("io.spring.dependency-management") version "1.1.7"
66
id("com.expediagroup.graphql") version "8.8.1"
77
id("io.gitlab.arturbosch.detekt") version "1.23.8"
8-
kotlin("jvm") version "2.2.21"
9-
kotlin("plugin.spring") version "2.2.21"
8+
kotlin("jvm") version "2.0.21"
9+
kotlin("plugin.spring") version "2.0.21"
1010
jacoco
1111
}
1212

@@ -23,7 +23,7 @@ repositories {
2323
mavenCentral()
2424
}
2525

26-
extra["springCloudVersion"] = "2024.0.2"
26+
extra["springCloudVersion"] = "2025.0.0"
2727

2828
dependencyManagement {
2929
imports {

src/main/kotlin/net/leanix/githubagent/services/WebhookEventService.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,9 @@ class WebhookEventService(
135135
defaultBranch: String?
136136
) {
137137
val location = getManifestFileLocation(manifestFilePath)
138-
logger.info("Manifest file ${ManifestFileAction.REMOVED} from repository $repositoryFullName under $location")
138+
logger.info(
139+
" Manifest file ${ManifestFileAction.REMOVED} from repository $repositoryFullName under $location"
140+
)
139141
webSocketService.sendMessage(
140142
"/events/manifestFile",
141143
ManifestFileUpdateDto(

0 commit comments

Comments
 (0)