|
@@ -14,7 +14,8 @@
|
|
<url>https://github.com/YunaiV/ruoyi-vue-pro</url>
|
|
<url>https://github.com/YunaiV/ruoyi-vue-pro</url>
|
|
|
|
|
|
<properties>
|
|
<properties>
|
|
- <revision>1.8.0-snapshot</revision>
|
|
|
|
|
|
+ <revision>1.8.1-snapshot</revision>
|
|
|
|
+ <flatten-maven-plugin.version>1.5.0</flatten-maven-plugin.version>
|
|
<!-- 统一依赖管理 -->
|
|
<!-- 统一依赖管理 -->
|
|
<spring.boot.version>2.7.14</spring.boot.version>
|
|
<spring.boot.version>2.7.14</spring.boot.version>
|
|
<!-- Web 相关 -->
|
|
<!-- Web 相关 -->
|
|
@@ -645,4 +646,50 @@
|
|
</dependencies>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
+ <build>
|
|
|
|
+ <!-- 定义使用插件的版本 -->
|
|
|
|
+ <pluginManagement>
|
|
|
|
+ <plugins>
|
|
|
|
+ <plugin>
|
|
|
|
+ <groupId>org.codehaus.mojo</groupId>
|
|
|
|
+ <artifactId>flatten-maven-plugin</artifactId>
|
|
|
|
+ <version>${flatten-maven-plugin.version}</version>
|
|
|
|
+ </plugin>
|
|
|
|
+ <plugin>
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
+ <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
+ <version>${spring.boot.version}</version>
|
|
|
|
+ </plugin>
|
|
|
|
+ </plugins>
|
|
|
|
+ </pluginManagement>
|
|
|
|
+
|
|
|
|
+ <plugins>
|
|
|
|
+ <!-- 统一 revision 版本 -->
|
|
|
|
+ <plugin>
|
|
|
|
+ <groupId>org.codehaus.mojo</groupId>
|
|
|
|
+ <artifactId>flatten-maven-plugin</artifactId>
|
|
|
|
+ <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>
|
|
|
|
+
|
|
</project>
|
|
</project>
|