Skip to content

Commit 6b2d9ed

Browse files
committed
⬆️ Update to Spring Boot 4.0.0
1 parent a1c3922 commit 6b2d9ed

File tree

1 file changed

+11
-11
lines changed
  • spring/fluentforms-sample-webmvc-app

1 file changed

+11
-11
lines changed

spring/fluentforms-sample-webmvc-app/pom.xml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.5.7</version>
8+
<version>4.0.0</version>
99
<relativePath /> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com._4point.aem.fluentforms</groupId>
@@ -16,7 +16,7 @@
1616

1717
<properties>
1818
<java.version>17</java.version>
19-
<wiremock.version>3.13.1</wiremock.version>
19+
<wiremock.version>3.13.2</wiremock.version>
2020
<wiremock-spring-boot.version>3.10.6</wiremock-spring-boot.version>
2121
<htmlunit.version>4.16.0</htmlunit.version>
2222
<fluentforms.spring.boot.starter.version>0.0.5-SNAPSHOT</fluentforms.spring.boot.starter.version>
@@ -44,16 +44,11 @@
4444
<dependencies>
4545
<dependency>
4646
<groupId>org.springframework.boot</groupId>
47-
<artifactId>spring-boot-starter</artifactId>
47+
<artifactId>spring-boot-starter-webmvc</artifactId>
4848
</dependency>
4949
<dependency>
5050
<groupId>org.springframework.boot</groupId>
51-
<artifactId>spring-boot-starter-web</artifactId>
52-
</dependency>
53-
<dependency>
54-
<!-- Required for FluentForms Spring Boot starter to work -->
55-
<groupId>org.springframework.boot</groupId>
56-
<artifactId>spring-boot-starter-jersey</artifactId>
51+
<artifactId>spring-boot-starter-restclient</artifactId>
5752
</dependency>
5853
<dependency>
5954
<groupId>com.fasterxml.jackson.core</groupId>
@@ -80,7 +75,12 @@
8075
<!-- Testing Dependencies -->
8176
<dependency>
8277
<groupId>org.springframework.boot</groupId>
83-
<artifactId>spring-boot-starter-test</artifactId>
78+
<artifactId>spring-boot-starter-restclient-test</artifactId>
79+
<scope>test</scope>
80+
</dependency>
81+
<dependency>
82+
<groupId>org.springframework.boot</groupId>
83+
<artifactId>spring-boot-starter-webmvc-test</artifactId>
8484
<scope>test</scope>
8585
</dependency>
8686
<dependency>
@@ -108,7 +108,7 @@
108108
</dependency>
109109
<dependency>
110110
<groupId>org.testcontainers</groupId>
111-
<artifactId>junit-jupiter</artifactId>
111+
<artifactId>testcontainers-junit-jupiter</artifactId>
112112
<scope>test</scope>
113113
</dependency>
114114
<dependency>

0 commit comments

Comments
 (0)