From c8cd4e2d014036197502caf35551da59596ff16b Mon Sep 17 00:00:00 2001
From: dhb52 <dhb52@126.com>
Date: 星期四, 14 三月 2024 08:48:15 +0800
Subject: [PATCH] fix: easyretry扩展模块的build脚本问题
---
ruoyi-extend/ruoyi-easyretry-server/pom.xml | 18 +++++++++---------
1 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/ruoyi-extend/ruoyi-easyretry-server/pom.xml b/ruoyi-extend/ruoyi-easyretry-server/pom.xml
index 0b1463b..4ea4d74 100644
--- a/ruoyi-extend/ruoyi-easyretry-server/pom.xml
+++ b/ruoyi-extend/ruoyi-easyretry-server/pom.xml
@@ -26,19 +26,19 @@
</dependencies>
<build>
- <finalName>ruoyi-easyretry-server</finalName>
+ <finalName>${project.artifactId}</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
- <configuration>
- <excludes>
- <exclude>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- </exclude>
- </excludes>
- </configuration>
+ <version>${spring-boot.version}</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>repackage</goal>
+ </goals>
+ </execution>
+ </executions>
</plugin>
</plugins>
</build>
--
Gitblit v1.9.3