添加打包pom

master
Yang Haoyu 2023-11-20 20:30:04 +08:00
parent 889a3d26ac
commit 5d49ac8d89
1 changed files with 18 additions and 2 deletions

View File

@ -9,7 +9,7 @@
<version>3.6.3</version> <version>3.6.3</version>
</parent> </parent>
<groupId>org.example</groupId> <groupId>com.fate</groupId>
<artifactId>fance-menghang-service</artifactId> <artifactId>fance-menghang-service</artifactId>
<properties> <properties>
@ -45,7 +45,23 @@
<version>3.15</version> <version>3.15</version>
</dependency> </dependency>
</dependencies> </dependencies>
<build>
<finalName>${project.artifactId}</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project> </project>