!28 fix system-server package,可直接运行

Merge pull request !28 from lovezhike/master
This commit is contained in:
芋道源码
2023-04-02 05:26:12 +00:00
committed by Gitee
6 changed files with 91 additions and 3 deletions

View File

@@ -122,4 +122,26 @@
<artifactId>yudao-spring-boot-starter-flowable</artifactId>
</dependency>
</dependencies>
<build>
<!-- 设置构建的 jar 包名 -->
<finalName>${project.artifactId}</finalName>
<plugins>
<!-- 打包 -->
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${spring.boot.version}</version>
<configuration>
<fork>true</fork>
</configuration>
<executions>
<execution>
<goals>
<goal>repackage</goal> <!-- 将引入的 jar 打入其中 -->
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>