Add Mockito dependency for JDK 24 support
This commit is contained in:
parent
08b24d3d10
commit
a8cf07f560
1 changed files with 2 additions and 1 deletions
|
@ -26,7 +26,8 @@ public class ApplicationBuild extends WebProject {
|
||||||
scope(compile)
|
scope(compile)
|
||||||
.include(dependency("org.springframework.boot:spring-boot-starter:3.4.3"))
|
.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-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)
|
scope(test)
|
||||||
.include(dependency("org.springframework.boot:spring-boot-starter-test:3.4.3"))
|
.include(dependency("org.springframework.boot:spring-boot-starter-test:3.4.3"))
|
||||||
.include(dependency("org.junit.jupiter:junit-jupiter:5.12.1"))
|
.include(dependency("org.junit.jupiter:junit-jupiter:5.12.1"))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue