Skip to content

Commit e142f57

Browse files
dependabot[bot]github-actions[bot]
authored andcommittedMar 17, 2025
Bump junitVersion from 5.12.0 to 5.12.1
Bumps `junitVersion` from 5.12.0 to 5.12.1. Updates `org.junit.jupiter:junit-jupiter-api` from 5.12.0 to 5.12.1 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](junit-team/junit5@r5.12.0...r5.12.1) Updates `org.junit.jupiter:junit-jupiter-engine` from 5.12.0 to 5.12.1 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](junit-team/junit5@r5.12.0...r5.12.1) Updates `org.junit.jupiter:junit-jupiter-params` from 5.12.0 to 5.12.1 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](junit-team/junit5@r5.12.0...r5.12.1) --- updated-dependencies: - dependency-name: org.junit.jupiter:junit-jupiter-api dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.junit.jupiter:junit-jupiter-engine dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.junit.jupiter:junit-jupiter-params dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 06cbb77 commit e142f57

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed
 

‎dbconnect/build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dependencies {
77

88
testImplementation(project(":dbtest"))
99
testImplementation("org.postgresql:postgresql:42.7.5")
10-
testImplementation("org.junit.jupiter:junit-jupiter-api:5.12.0")
11-
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.12.0")
10+
testImplementation("org.junit.jupiter:junit-jupiter-api:5.12.1")
11+
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.12.1")
1212
testImplementation("org.assertj:assertj-core:3.27.3")
1313
}

‎httpklient/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
}
66

77
val ktorVersion = "3.1.1"
8-
val junitVersion = "5.12.0"
8+
val junitVersion = "5.12.1"
99

1010
kotlin.explicitApi = ExplicitApiMode.Warning
1111

‎infrastructure/build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
}
44

55
dependencies {
6-
testImplementation("org.junit.jupiter:junit-jupiter-api:5.12.0")
7-
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.12.0")
6+
testImplementation("org.junit.jupiter:junit-jupiter-api:5.12.1")
7+
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.12.1")
88
testImplementation("org.assertj:assertj-core:3.27.3")
99
}

‎motor-api/build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ dependencies {
1616
testImplementation(project(":dbtest"))
1717
testImplementation(project(":server"))
1818

19-
testImplementation("org.junit.jupiter:junit-jupiter-api:5.12.0")
20-
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.12.0")
19+
testImplementation("org.junit.jupiter:junit-jupiter-api:5.12.1")
20+
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.12.1")
2121
testImplementation("org.assertj:assertj-core:3.27.3")
2222

2323
testImplementation(project(":motor-test-utils"))

‎motor/build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ dependencies {
1515
testImplementation("io.micrometer:micrometer-registry-prometheus:1.14.5")
1616
testImplementation("ch.qos.logback:logback-classic:1.5.17")
1717
testImplementation("net.logstash.logback:logstash-logback-encoder:8.0")
18-
testImplementation("org.junit.jupiter:junit-jupiter-api:5.12.0")
19-
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.12.0")
18+
testImplementation("org.junit.jupiter:junit-jupiter-api:5.12.1")
19+
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.12.1")
2020
testImplementation("org.assertj:assertj-core:3.27.3")
2121

2222
testImplementation(project(":motor-test-utils"))

‎server/build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ dependencies {
3434
testImplementation("io.ktor:ktor-client-content-negotiation:$ktorVersion")
3535
testImplementation("io.ktor:ktor-serialization-jackson:$ktorVersion")
3636
testImplementation("io.ktor:ktor-server-test-host:$ktorVersion")
37-
testImplementation("org.junit.jupiter:junit-jupiter-api:5.12.0")
38-
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.12.0")
37+
testImplementation("org.junit.jupiter:junit-jupiter-api:5.12.1")
38+
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.12.1")
3939
testImplementation("org.assertj:assertj-core:3.27.3")
4040
}

‎tidslinje/build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ kotlin.explicitApi = ExplicitApiMode.Warning
99
dependencies {
1010
implementation(project(":dbconnect")) // Periode
1111
implementation(project(":verdityper"))
12-
testImplementation("org.junit.jupiter:junit-jupiter-api:5.12.0")
13-
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.12.0")
12+
testImplementation("org.junit.jupiter:junit-jupiter-api:5.12.1")
13+
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.12.1")
1414
testImplementation("org.assertj:assertj-core:3.27.3")
1515
}

‎verdityper/build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
dependencies {
77
implementation(project(":dbconnect"))
88
implementation("com.fasterxml.jackson.core:jackson-annotations:2.18.3")
9-
testImplementation("org.junit.jupiter:junit-jupiter-api:5.12.0")
10-
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.12.0")
9+
testImplementation("org.junit.jupiter:junit-jupiter-api:5.12.1")
10+
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.12.1")
1111
testImplementation("org.assertj:assertj-core:3.27.3")
1212
}

0 commit comments

Comments
 (0)
Please sign in to comment.