|
|
|
|
@ -26,13 +26,14 @@
|
|
|
|
|
<url>https://github.com/YunaiV/ruoyi-vue-pro</url>
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<revision>1.8.0-snapshot</revision>
|
|
|
|
|
<revision>1.8.1-snapshot</revision>
|
|
|
|
|
<!-- Maven 相关 -->
|
|
|
|
|
<java.version>1.8</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>
|
|
|
|
|
<flatten-maven-plugin.version>1.5.0</flatten-maven-plugin.version>
|
|
|
|
|
<!-- 看看咋放到 bom 里 -->
|
|
|
|
|
<lombok.version>1.18.28</lombok.version>
|
|
|
|
|
<spring.boot.version>2.7.14</spring.boot.version>
|
|
|
|
|
@ -90,6 +91,35 @@
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</pluginManagement>
|
|
|
|
|
|
|
|
|
|
<plugins>
|
|
|
|
|
<!-- 统一 revision 版本 -->
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
|
<artifactId>flatten-maven-plugin</artifactId>
|
|
|
|
|
<version>${flatten-maven-plugin.version}</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<flattenMode>resolveCiFriendliesOnly</flattenMode>
|
|
|
|
|
<updatePomFile>true</updatePomFile>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>flatten</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<id>flatten</id>
|
|
|
|
|
<phase>process-resources</phase>
|
|
|
|
|
</execution>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>clean</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<id>flatten.clean</id>
|
|
|
|
|
<phase>clean</phase>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
<!-- 使用 huawei / aliyun 的 Maven 源,提升下载速度 -->
|
|
|
|
|
|