feat:update to Spring Boot 3.0.0. (#739)

pull/740/head
Haotian Zhang 3 years ago committed by GitHub
parent 86372fabbb
commit f5e84021f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -3,3 +3,4 @@
- [support 2022](https://github.com/Tencent/spring-cloud-tencent/pull/732) - [support 2022](https://github.com/Tencent/spring-cloud-tencent/pull/732)
- [feat:update to Spring Cloud 2022 RC2.](https://github.com/Tencent/spring-cloud-tencent/pull/734) - [feat:update to Spring Cloud 2022 RC2.](https://github.com/Tencent/spring-cloud-tencent/pull/734)
- [feat:update to Spring Boot 3.0.0.](https://github.com/Tencent/spring-cloud-tencent/pull/739)

@ -95,10 +95,10 @@
<spring.cloud.version>2022.0.0-RC2</spring.cloud.version> <spring.cloud.version>2022.0.0-RC2</spring.cloud.version>
<!-- Spring Boot --> <!-- Spring Boot -->
<spring.boot.version>3.0.0-RC2</spring.boot.version> <spring.boot.version>3.0.0</spring.boot.version>
<!-- Spring Framework --> <!-- Spring Framework -->
<spring.framework.version>6.0.0</spring.framework.version> <spring.framework.version>6.0.1</spring.framework.version>
<!-- Maven Plugin Versions --> <!-- Maven Plugin Versions -->
<jacoco.version>0.8.8</jacoco.version> <jacoco.version>0.8.8</jacoco.version>
@ -121,15 +121,16 @@
<scope>import</scope> <scope>import</scope>
</dependency> </dependency>
<!-- Spring Cloud Dependencies --> <!-- Spring Framework Dependencies -->
<dependency> <dependency>
<groupId>org.springframework.cloud</groupId> <groupId>org.springframework</groupId>
<artifactId>spring-cloud-dependencies</artifactId> <artifactId>spring-framework-bom</artifactId>
<version>${spring.cloud.version}</version> <version>${spring.framework.version}</version>
<type>pom</type> <type>pom</type>
<scope>import</scope> <scope>import</scope>
</dependency> </dependency>
<!-- Spring Boot Dependencies -->
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId> <artifactId>spring-boot-dependencies</artifactId>
@ -138,11 +139,11 @@
<scope>import</scope> <scope>import</scope>
</dependency> </dependency>
<!-- Spring Framework Dependencies --> <!-- Spring Cloud Dependencies -->
<dependency> <dependency>
<groupId>org.springframework</groupId> <groupId>org.springframework.cloud</groupId>
<artifactId>spring-framework-bom</artifactId> <artifactId>spring-cloud-dependencies</artifactId>
<version>${spring.framework.version}</version> <version>${spring.cloud.version}</version>
<type>pom</type> <type>pom</type>
<scope>import</scope> <scope>import</scope>
</dependency> </dependency>
@ -177,12 +178,12 @@
<artifactId>jacoco-maven-plugin</artifactId> <artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco.version}</version> <version>${jacoco.version}</version>
<executions> <executions>
<!-- <execution>--> <execution>
<!-- <id>jacoco-initialize</id>--> <id>jacoco-initialize</id>
<!-- <goals>--> <goals>
<!-- <goal>prepare-agent</goal>--> <goal>prepare-agent</goal>
<!-- </goals>--> </goals>
<!-- </execution>--> </execution>
<execution> <execution>
<id>jacoco-site</id> <id>jacoco-site</id>
<phase>test</phase> <phase>test</phase>

Loading…
Cancel
Save