Skip to content

Commit ffaad97

Browse files
Bump org.junit.jupiter:junit-jupiter-engine from 5.12.0 to 5.12.1 (#142)
* Bump org.junit.jupiter:junit-jupiter-engine from 5.12.0 to 5.12.1 Bumps [org.junit.jupiter:junit-jupiter-engine](https://github.com/junit-team/junit5) from 5.12.0 to 5.12.1. - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](junit-team/junit-framework@r5.12.0...r5.12.1) --- updated-dependencies: - dependency-name: org.junit.jupiter:junit-jupiter-engine dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> * Bump junit version to 5.12.1 --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Yukihiro Okada (Yuki) <[email protected]>
1 parent de2ebe5 commit ffaad97

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

build.gradle

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ description = "Embulk plugin for generate dummy records by Java."
2828
sourceCompatibility = 1.8
2929
targetCompatibility = 1.8
3030

31+
def JUNIT_VERSION = "5.12.1"
32+
3133
tasks.withType(JavaCompile) {
3234
options.compilerArgs << "-Xlint:deprecation" << "-Xlint:unchecked"
3335
}
@@ -46,8 +48,8 @@ dependencies {
4648
implementation 'com.google.guava:guava:33.4.0-jre'
4749
implementation 'org.msgpack:msgpack-core:0.9.+'
4850

49-
testImplementation "org.junit.jupiter:junit-jupiter-api:5.12.0"
50-
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.12.0"
51+
testImplementation "org.junit.jupiter:junit-jupiter-api:$JUNIT_VERSION"
52+
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$JUNIT_VERSION"
5153
}
5254

5355
embulkPlugin {

0 commit comments

Comments
 (0)