Bump JUnit to version 5.12.1

This commit is contained in:
Erik C. Thauvin 2025-03-18 13:12:40 -07:00
parent 5a99244158
commit 1a2ea9edb0
Signed by: erik
GPG key ID: 776702A6A2DA330E
2 changed files with 4 additions and 4 deletions

View file

@ -33,8 +33,8 @@ public class DemoApplicationBuild extends WebProject {
.include(dependency("org.springframework.boot", "spring-boot-starter-web", boot));
scope(test)
.include(dependency("org.springframework.boot", "spring-boot-starter-test", boot))
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 12, 0)))
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 12, 0)));
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 12, 1)))
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 12, 1)));
scope(standalone)
.include(dependency("org.springframework.boot", "spring-boot-loader", boot));
}