|
@@ -23,21 +23,22 @@
|
|
|
<parent>
|
|
<parent>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
- <version>2.6.6</version>
|
|
|
|
|
|
|
+ <version>2.6.8</version>
|
|
|
<relativePath/>
|
|
<relativePath/>
|
|
|
</parent>
|
|
</parent>
|
|
|
|
|
|
|
|
<groupId>cc.uncarbon.framework</groupId>
|
|
<groupId>cc.uncarbon.framework</groupId>
|
|
|
<artifactId>helio-starters</artifactId>
|
|
<artifactId>helio-starters</artifactId>
|
|
|
- <version>1.5.0</version>
|
|
|
|
|
|
|
+ <version>${revision}</version>
|
|
|
|
|
|
|
|
<properties>
|
|
<properties>
|
|
|
<!-- core versions -->
|
|
<!-- core versions -->
|
|
|
- <helio-starters.version>1.5.0</helio-starters.version>
|
|
|
|
|
|
|
+ <revision>1.5.1</revision>
|
|
|
|
|
+ <helio-starters.version>${revision}</helio-starters.version>
|
|
|
<!-- JDK8则改为'1.8' JDK11则改为'11' -->
|
|
<!-- JDK8则改为'1.8' JDK11则改为'11' -->
|
|
|
<java.version>1.8</java.version>
|
|
<java.version>1.8</java.version>
|
|
|
<!-- 若变更Spring Boot版本, 上面parent依赖版本也要变 -->
|
|
<!-- 若变更Spring Boot版本, 上面parent依赖版本也要变 -->
|
|
|
- <spring-boot.version>2.6.6</spring-boot.version>
|
|
|
|
|
|
|
+ <spring-boot.version>2.6.8</spring-boot.version>
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Spring Cloud versions -->
|
|
<!-- Spring Cloud versions -->
|
|
@@ -54,7 +55,7 @@
|
|
|
|
|
|
|
|
<!-- 3rd-party versions -->
|
|
<!-- 3rd-party versions -->
|
|
|
<hutool.version>5.7.22</hutool.version>
|
|
<hutool.version>5.7.22</hutool.version>
|
|
|
- <sa-token.version>1.29.0</sa-token.version>
|
|
|
|
|
|
|
+ <sa-token.version>1.30.0</sa-token.version>
|
|
|
<transmittable-thread-local.version>2.12.1</transmittable-thread-local.version>
|
|
<transmittable-thread-local.version>2.12.1</transmittable-thread-local.version>
|
|
|
<!-- 3.5.1 版本根据 issue 显示,有多租户、枚举类等兼容性问题,暂缓升级 -->
|
|
<!-- 3.5.1 版本根据 issue 显示,有多租户、枚举类等兼容性问题,暂缓升级 -->
|
|
|
<mybatis-plus.version>3.4.3.4</mybatis-plus.version>
|
|
<mybatis-plus.version>3.4.3.4</mybatis-plus.version>
|
|
@@ -67,9 +68,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- DB Driver versions -->
|
|
<!-- DB Driver versions -->
|
|
|
- <mysql.version>8.0.23</mysql.version>
|
|
|
|
|
- <postgresql.version>42.2.19</postgresql.version>
|
|
|
|
|
- <!-- 以下2项版本较旧, 请根据JDK版本自行更新 -->
|
|
|
|
|
|
|
+ <mysql.version>8.0.28</mysql.version>
|
|
|
|
|
+ <postgresql.version>42.3.4</postgresql.version>
|
|
|
|
|
+ <!-- 以下2项版本较旧, 请根据 JDK 版本自行更新 -->
|
|
|
<mssql.version>4.0</mssql.version>
|
|
<mssql.version>4.0</mssql.version>
|
|
|
<oracle.version>11.2.0.3</oracle.version>
|
|
<oracle.version>11.2.0.3</oracle.version>
|
|
|
|
|
|
|
@@ -455,4 +456,37 @@
|
|
|
</dependency>
|
|
</dependency>
|
|
|
</dependencies>
|
|
</dependencies>
|
|
|
</dependencyManagement>
|
|
</dependencyManagement>
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ <!-- 项目构建 -->
|
|
|
|
|
+ <build>
|
|
|
|
|
+ <plugins>
|
|
|
|
|
+ <!-- 统一版本号管理 -->
|
|
|
|
|
+ <plugin>
|
|
|
|
|
+ <groupId>org.codehaus.mojo</groupId>
|
|
|
|
|
+ <artifactId>flatten-maven-plugin</artifactId>
|
|
|
|
|
+ <version>1.1.0</version>
|
|
|
|
|
+ <configuration>
|
|
|
|
|
+ <updatePomFile>true</updatePomFile>
|
|
|
|
|
+ <flattenMode>resolveCiFriendliesOnly</flattenMode>
|
|
|
|
|
+ </configuration>
|
|
|
|
|
+ <executions>
|
|
|
|
|
+ <execution>
|
|
|
|
|
+ <id>flatten</id>
|
|
|
|
|
+ <phase>process-resources</phase>
|
|
|
|
|
+ <goals>
|
|
|
|
|
+ <goal>flatten</goal>
|
|
|
|
|
+ </goals>
|
|
|
|
|
+ </execution>
|
|
|
|
|
+ <execution>
|
|
|
|
|
+ <id>flatten.clean</id>
|
|
|
|
|
+ <phase>clean</phase>
|
|
|
|
|
+ <goals>
|
|
|
|
|
+ <goal>clean</goal>
|
|
|
|
|
+ </goals>
|
|
|
|
|
+ </execution>
|
|
|
|
|
+ </executions>
|
|
|
|
|
+ </plugin>
|
|
|
|
|
+ </plugins>
|
|
|
|
|
+ </build>
|
|
|
</project>
|
|
</project>
|