1
0
mirror of https://gitee.com/coder-xiaomo/flashsale synced 2025-01-10 11:48:14 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

添加SpringBoot打包plugin,解决【flashsale-1.0-SNAPSHOT.jar中没有主清单属性】问题

This commit is contained in:
程序员小墨 2022-03-06 00:51:25 +08:00
parent 029fb6432e
commit e0912a2429
2 changed files with 14 additions and 1 deletions

View File

@ -84,4 +84,7 @@
@ResponseBody @ResponseBody
``` ```
10. 10. 前端页面
11. 完成

10
pom.xml
View File

@ -176,6 +176,16 @@
<target>8</target> <target>8</target>
</configuration> </configuration>
</plugin> </plugin>
<!--
添加SpringBoot打包plugin
解决【flashsale-1.0-SNAPSHOT.jar中没有主清单属性】问题
-->
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>2.4.3</version>
</plugin>
</plugins> </plugins>
</build> </build>