Add Mockito dependency for JDK 24 support

This commit is contained in:
Erik C. Thauvin 2025-03-19 00:16:58 -07:00
parent 08b24d3d10
commit a8cf07f560
Signed by: erik
GPG key ID: 776702A6A2DA330E

View file

@ -26,7 +26,8 @@ public class ApplicationBuild extends WebProject {
scope(compile)
.include(dependency("org.springframework.boot:spring-boot-starter:3.4.3"))
.include(dependency("org.springframework.boot:spring-boot-starter-actuator:3.4.3"))
.include(dependency("org.springframework.boot:spring-boot-starter-web:3.4.3"));
.include(dependency("org.springframework.boot:spring-boot-starter-web:3.4.3"))
.include(dependency("org.mockito:mockito-core:5.16.1"));
scope(test)
.include(dependency("org.springframework.boot:spring-boot-starter-test:3.4.3"))
.include(dependency("org.junit.jupiter:junit-jupiter:5.12.1"))