|
@@ -32,17 +32,17 @@
|
|
|
<url>https://github.com/YunaiV/ruoyi-vue-pro</url>
|
|
|
|
|
|
<properties>
|
|
|
- <revision>2.0.1-jdk8-snapshot</revision>
|
|
|
+ <revision>2.0.1-snapshot</revision>
|
|
|
<!-- Maven 相关 -->
|
|
|
- <java.version>1.8</java.version>
|
|
|
+ <java.version>21</java.version>
|
|
|
<maven.compiler.source>${java.version}</maven.compiler.source>
|
|
|
<maven.compiler.target>${java.version}</maven.compiler.target>
|
|
|
- <maven-surefire-plugin.version>3.0.0-M5</maven-surefire-plugin.version>
|
|
|
- <maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
|
|
|
+ <maven-surefire-plugin.version>3.2.2</maven-surefire-plugin.version>
|
|
|
+ <maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
|
|
|
<flatten-maven-plugin.version>1.5.0</flatten-maven-plugin.version>
|
|
|
<!-- 看看咋放到 bom 里 -->
|
|
|
<lombok.version>1.18.30</lombok.version>
|
|
|
- <spring.boot.version>2.7.18</spring.boot.version>
|
|
|
+ <spring.boot.version>3.2.2</spring.boot.version>
|
|
|
<mapstruct.version>1.5.5.Final</mapstruct.version>
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
</properties>
|
|
@@ -93,6 +93,11 @@
|
|
|
<version>${mapstruct.version}</version>
|
|
|
</path>
|
|
|
</annotationProcessorPaths>
|
|
|
+ <!-- 编译参数写在 arg 内,解决 Spring Boot 3.2 的 Parameter Name Discovery 问题 -->
|
|
|
+ <debug>false</debug>
|
|
|
+ <compilerArgs>
|
|
|
+ <arg>-parameters</arg>
|
|
|
+ </compilerArgs>
|
|
|
</configuration>
|
|
|
</plugin>
|
|
|
<plugin>
|