Skip to content

Commit

Permalink
feat(deps): update spring-boot to v3.4.1
Browse files Browse the repository at this point in the history
note the breaking change in the simulator _configuration_.
the below error may occur, you must rename the properties in that case:

```shell
Caused by: org.springframework.boot.context.properties.source.MutuallyExclusiveConfigurationPropertiesException: The configuration properties 'management.endpoint.health.access, management.endpoint.health.enabled' are mutually exclusive and 'management.endpoint.health.access, management.endpoint.health.enabled' have been configured together
```
  • Loading branch information
bbortt committed Dec 30, 2024
1 parent 6e532ac commit aef7e9f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 11 deletions.
11 changes: 5 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,13 @@
<maven.nexus-staging.plugin.version>1.6.13</maven.nexus-staging.plugin.version>

<lombok.version>1.18.34</lombok.version>
<citrus.version>4.4.0</citrus.version>
<citrus.version>4.5.0</citrus.version>

<spring-boot.version>3.3.5</spring-boot.version>
<spring.version>6.3.5</spring.version>
<spring-boot.version>3.4.1</spring-boot.version>
<testng.version>7.10.2</testng.version>
<wsdl4j.version>1.6.3</wsdl4j.version>
<xerces.version>2.12.2</xerces.version>
<xstream.version>1.4.20</xstream.version>
<xstream.version>1.4.21</xstream.version>

<!-- see https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-log4j2/3.3.5 -->
<log4j2.version>2.23.1</log4j2.version>
Expand Down Expand Up @@ -188,7 +187,7 @@
<dependency>
<groupId>jakarta.interceptor</groupId>
<artifactId>jakarta.interceptor-api</artifactId>
<version>2.1.0</version>
<version>2.2.0</version>
</dependency>
<dependency>
<groupId>jakarta.transaction</groupId>
Expand Down Expand Up @@ -222,7 +221,7 @@
<dependency>
<groupId>io.swagger.parser.v3</groupId>
<artifactId>swagger-parser</artifactId>
<version>2.1.20</version>
<version>2.1.24</version>
</dependency>

<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ citrus.simulator.default-scenario=Default
citrus.simulator.template-validation=true

# actuator properties
management.endpoint.health.enabled=true
management.endpoint.info.enabled=true
management.endpoint.health.access=read_only
management.endpoint.info.access=read_only
management.endpoints.web.base-path=/api/manage
management.endpoints.web.exposure.include=health,info
management.info.env.enabled=true
2 changes: 1 addition & 1 deletion simulator-spring-boot/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-starter-webmvc-api</artifactId>
<version>2.3.0</version>
<version>2.7.0</version>
</dependency>

<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ spring.resources.chain.enabled=true
spring.web.resources.static-locations=classpath:/static/simulator-ui/, classpath:/META-INF/resources/, classpath:/resources/, classpath:/static/, classpath:/public/

# Actuator properties
management.endpoint.health.enabled=true
management.endpoint.info.enabled=true
management.endpoint.health.access=read_only
management.endpoint.info.access=read_only
management.endpoints.web.base-path=/api/manage
management.endpoints.web.exposure.include=health,info
management.info.env.enabled=true
Expand Down

0 comments on commit aef7e9f

Please sign in to comment.