Skip to content

Commit b9a67bf

Browse files
committed
Oppdatert avhengigheter
* Spring boot 3.3.0 * Token-support 4.1.7 som bygger på kotlin 2.0
1 parent 544e65c commit b9a67bf

File tree

5 files changed

+13
-11
lines changed

5 files changed

+13
-11
lines changed

build.gradle.kts

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
val javaVersion = JavaLanguageVersion.of(21)
22

33
plugins {
4-
kotlin("jvm") version "1.9.23"
4+
kotlin("jvm") version "1.9.24"
55
`maven-publish`
66
`java-library`
77
id("com.diffplug.spotless") version "6.25.0"
@@ -19,6 +19,8 @@ allprojects {
1919
}
2020

2121
apply(plugin = "com.diffplug.spotless")
22+
apply(plugin = "com.github.ben-manes.versions")
23+
apply(plugin = "se.patrikerdes.use-latest-versions")
2224
spotless {
2325
kotlin {
2426
ktlint("0.50.0")
@@ -44,11 +46,11 @@ subprojects {
4446
}
4547

4648
dependencies {
47-
implementation(platform("org.springframework.boot:spring-boot-dependencies:3.2.4"))
49+
implementation(platform("org.springframework.boot:spring-boot-dependencies:3.3.0"))
4850

4951
testImplementation("org.junit.jupiter:junit-jupiter")
5052
testImplementation("org.assertj:assertj-core")
51-
testImplementation("io.mockk:mockk:1.13.10")
53+
testImplementation("io.mockk:mockk:1.13.11")
5254

5355
testImplementation("ch.qos.logback:logback-core")
5456
testImplementation("ch.qos.logback:logback-classic")

http-client/build.gradle.kts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
val tokenSupportVersion = "4.1.4"
1+
val tokenSupportVersion = "4.1.7"
22
val wiremockVersion = "3.0.1"
3-
val tilleggsstønaderKontrakterVersion = "2024.03.25-13.16.c4f871d62dc4"
3+
val tilleggsstønaderKontrakterVersion = "2024.05.27-10.49.07f6d5037b2d"
44

55
plugins {
6-
kotlin("plugin.spring") version "1.9.23"
6+
kotlin("plugin.spring") version "1.9.24"
77
}
88

99
dependencies {

log/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
kotlin("plugin.spring") version "1.9.23"
2+
kotlin("plugin.spring") version "1.9.24"
33
}
44

55
dependencies {

sikkerhet/build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
val tokenSupportVersion = "4.1.4"
1+
val tokenSupportVersion = "4.1.7"
22

33
plugins {
4-
kotlin("plugin.spring") version "1.9.23"
4+
kotlin("plugin.spring") version "1.9.24"
55
}
66

77
dependencies {

unleash/build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
plugins {
2-
kotlin("plugin.spring") version "1.9.23"
2+
kotlin("plugin.spring") version "1.9.24"
33
}
44

55
dependencies {
66
implementation("org.springframework.boot:spring-boot")
77
implementation("org.springframework.boot:spring-boot-autoconfigure")
8-
api("io.getunleash:unleash-client-java:9.2.0")
8+
api("io.getunleash:unleash-client-java:9.2.2")
99
}
1010

1111
tasks.sourcesJar {

0 commit comments

Comments
 (0)