Skip to content

Commit 3aeccb2

Browse files
authored
Bump spring boot version in recipes to 27 (#424)
* Bump Spring Boot version to 2.7 in recipes * Moved Disabled annotation from type to method
1 parent 253f337 commit 3aeccb2

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Diff for: components/sbm-support-boot/src/main/resources/recipes/initialize-spring-boot-migration.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
name: "add managed dependency to Maven"
2121
groupId: org.springframework.boot
2222
artifactId: spring-boot-dependencies
23-
version: 2.6.3
23+
version: 2.7.3
2424
dependencyType: pom
2525
scope: import
2626
description: Add Spring Boot dependency management section to buildfile.

Diff for: components/sbm-support-jee/src/test/java/org/springframework/sbm/jee/web/api/WebXmlTest.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727

2828
import static org.assertj.core.api.Assertions.assertThat;
2929

30-
@Disabled("See #")
3130
public class WebXmlTest {
3231

3332
public static final String GIVEN_SERVLET_NAME = "TheServlet";
@@ -53,6 +52,7 @@ public class WebXmlTest {
5352
"</web-app>";
5453

5554
@Test
55+
@Disabled("See #416")
5656
void deserializeMovieFunExampleWebXml() {
5757
String webXmlSource = """
5858
<web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
@@ -94,6 +94,7 @@ void deserializeMovieFunExampleWebXml() {
9494
}
9595

9696
@Test
97+
@Disabled("See #416")
9798
void deserializeWebXml() throws IOException, JAXBException {
9899

99100
String expectedXml =
@@ -124,6 +125,7 @@ void deserializeWebXml() throws IOException, JAXBException {
124125
}
125126

126127
@Test
128+
@Disabled("See #416")
127129
void deleteServletDefinition() throws JAXBException {
128130
String expectedXml =
129131
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n" +

0 commit comments

Comments
 (0)