Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update spring-boot to v3.4.0 #316

Merged
merged 1 commit into from
Jan 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading