Skip to content

Commit

Permalink
FDP-2593: Update Spring Boot, Kotlin and Gradle
Browse files Browse the repository at this point in the history
Signed-off-by: Jasper Kamerling <[email protected]>
  • Loading branch information
jasperkamerling committed Sep 11, 2024
1 parent e9887ac commit c993cc1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions application/src/main/resources/application-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ crest-device-service:
change-initial-psk: false
decryption:
method: "RSA"
# Test decryption key for psk's.
private-key:
1: |-
-----BEGIN PRIVATE KEY-----
Expand Down
12 changes: 6 additions & 6 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ import org.jetbrains.kotlin.gradle.dsl.KotlinJvmProjectExtension
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
id("org.springframework.boot") version "3.3.2" apply false
id("io.spring.dependency-management") version "1.1.5" apply false
kotlin("jvm") version "2.0.0" apply false
kotlin("plugin.spring") version "2.0.0" apply false
kotlin("plugin.jpa") version "2.0.0" apply false
id("org.springframework.boot") version "3.3.3" apply false
id("io.spring.dependency-management") version "1.1.6" apply false
kotlin("jvm") version "2.0.20" apply false
kotlin("plugin.spring") version "2.0.20" apply false
kotlin("plugin.jpa") version "2.0.20" apply false
id("com.github.davidmc24.gradle.plugin.avro") version "1.9.1" apply false
id("com.diffplug.spotless") version "6.25.0"
id("org.sonarqube") version "5.0.0.4638"
id("org.sonarqube") version "5.1.0.4882"
id("eclipse")
}

Expand Down
4 changes: 2 additions & 2 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ dependencyResolutionManagement {
versionCatalogs {
create("libs") {
version("kotlinLogging", "7.0.0")
version("avro", "1.11.3")
version("avro", "1.12.0")
version("mockitoKotlin", "5.4.0")
version("commonsCodec", "1.17.0")
version("commonsCodec", "1.17.1")
version("gxfUtils", "2.0")

library("logging", "io.github.oshai", "kotlin-logging-jvm").versionRef("kotlinLogging")
Expand Down

0 comments on commit c993cc1

Please sign in to comment.