Skip to content

Commit

Permalink
chore(pom): add support for Spring Boot 3.4.0
Browse files Browse the repository at this point in the history
Related to #4657
  • Loading branch information
mboskamp committed Dec 9, 2024
1 parent e97e4ed commit 52c33ee
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public void shouldNotRedirect() {

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

// then
ResponseEntity<String> response = testRestTemplate.exchange(url, HttpMethod.GET, new HttpEntity<>(null), String.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ server:
key-store-type: pkcs12
key-alias: camunda
key-password: camunda
port: 8443
port: 8443
spring.http.client.factory: simple
6 changes: 3 additions & 3 deletions parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
<properties>
<version.quarkus>3.15.0</version.quarkus>
<version.spring.framework>5.3.39</version.spring.framework>
<version.spring.framework6>6.1.15</version.spring.framework6>
<version.spring-boot>3.3.6</version.spring-boot>
<version.spring.framework6>6.2.0</version.spring.framework6>
<version.spring-boot>3.4.0</version.spring-boot>
<version.resteasy>3.15.6.Final</version.resteasy>
<version.jersey2>2.34</version.jersey2>
<!-- use minimum version of resteasy and jersey -->
Expand All @@ -43,7 +43,7 @@
<version.xml.jaxb-impl4>4.0.5</version.xml.jaxb-impl4>
<version.jakarta.xml.bind-api>4.0.2</version.jakarta.xml.bind-api>
<version.httpclient>4.5.14</version.httpclient>
<version.httpclient5>5.3</version.httpclient5>
<version.httpclient5>5.4.1</version.httpclient5>

<version.slf4j>1.7.26</version.slf4j>
<version.logback>1.2.11</version.logback>
Expand Down

0 comments on commit 52c33ee

Please sign in to comment.