Skip to content

Commit 7e1813e

Browse files
authored
chore(pom): add support for Spring Boot 3.4.1
Related to #4657
1 parent 7c08513 commit 7e1813e

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

distro/run/core/src/test/java/org/camunda/bpm/run/test/config/https/HttpsConfigurationEnabledTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public void shouldNotRedirect() {
6767

6868
// then
6969
exceptionRule.expect(ResourceAccessException.class);
70-
exceptionRule.expectMessage("Connection refused");
70+
exceptionRule.expectMessage("I/O error on GET request for \"http://localhost:8080/engine-rest/task\":");
7171

7272
// then
7373
ResponseEntity<String> response = testRestTemplate.exchange(url, HttpMethod.GET, new HttpEntity<>(null), String.class);

distro/run/core/src/test/resources/application-test-https-enabled.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ server:
55
key-store-type: pkcs12
66
key-alias: camunda
77
key-password: camunda
8-
port: 8443
8+
port: 8443
9+
spring.http.client.factory: simple

engine-rest/engine-rest-jakarta/pom.xml

+6
Original file line numberDiff line numberDiff line change
@@ -715,6 +715,12 @@
715715
</exclusion>
716716
</exclusions>
717717
</dependency>
718+
<dependency>
719+
<groupId>org.springframework</groupId>
720+
<artifactId>spring-web</artifactId>
721+
<version>${version.spring.framework}</version>
722+
<scope>test</scope>
723+
</dependency>
718724
</dependencies>
719725
</profile>
720726
</profiles>

parent/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
<properties>
2121
<version.quarkus>3.15.0</version.quarkus>
2222
<version.spring.framework>5.3.39</version.spring.framework>
23-
<version.spring.framework6>6.1.15</version.spring.framework6>
24-
<version.spring-boot>3.3.6</version.spring-boot>
23+
<version.spring.framework6>6.2.1</version.spring.framework6>
24+
<version.spring-boot>3.4.1</version.spring-boot>
2525
<version.resteasy>3.15.6.Final</version.resteasy>
2626
<version.jersey2>2.34</version.jersey2>
2727
<!-- use minimum version of resteasy and jersey -->
@@ -43,7 +43,7 @@
4343
<version.xml.jaxb-impl4>4.0.5</version.xml.jaxb-impl4>
4444
<version.jakarta.xml.bind-api>4.0.2</version.jakarta.xml.bind-api>
4545
<version.httpclient>4.5.14</version.httpclient>
46-
<version.httpclient5>5.3</version.httpclient5>
46+
<version.httpclient5>5.4.1</version.httpclient5>
4747

4848
<version.slf4j>1.7.26</version.slf4j>
4949
<version.logback>1.2.11</version.logback>

0 commit comments

Comments
 (0)