Skip to content

Commit ccf18a1

Browse files
committed
Upgrade to Spring Boot 3.5.x
1 parent f971d43 commit ccf18a1

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ dependencies {
2828
implementation('org.webjars:fullcalendar:5.11.3')
2929
implementation('org.webjars:webjars-locator-core')
3030

31-
runtimeOnly(platform('com.azure.spring:spring-cloud-azure-dependencies:5.20.0'))
31+
runtimeOnly(platform('com.azure.spring:spring-cloud-azure-dependencies:5.23.0'))
3232
runtimeOnly('com.azure.spring:spring-cloud-azure-starter-keyvault-secrets') {
3333
exclude(group: 'jakarta.validation', module: 'jakarta.validation-api')
3434
}

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
pluginManagement {
22
plugins {
3-
id 'org.springframework.boot' version '3.4.3'
3+
id 'org.springframework.boot' version '3.5.5'
44
id 'io.spring.javaformat' version "$javaFormatVersion"
55
}
66
repositories {

src/test/java/io/spring/calendar/release/ReleaseEventsControllerTests.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2024 the original author or authors.
2+
* Copyright 2024-2025 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -27,8 +27,8 @@
2727

2828
import org.springframework.beans.factory.annotation.Autowired;
2929
import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest;
30-
import org.springframework.boot.test.mock.mockito.MockBean;
3130
import org.springframework.http.HttpHeaders;
31+
import org.springframework.test.context.bean.override.mockito.MockitoBean;
3232
import org.springframework.test.web.servlet.MockMvc;
3333
import org.springframework.test.web.servlet.request.MockMvcRequestBuilders;
3434
import org.springframework.test.web.servlet.result.MockMvcResultMatchers;
@@ -46,7 +46,7 @@ class ReleaseEventsControllerTests {
4646
@Autowired
4747
private MockMvc mvc;
4848

49-
@MockBean
49+
@MockitoBean
5050
private ReleaseRepository releases;
5151

5252
@Test

0 commit comments

Comments
 (0)