maven编译设置jar包的名称

警告
本文最后更新于 2022-04-15 21:43,文中内容可能已过时。

是同级的,这样设置的好处就是在构建容器镜像的时候,所有项目可以统一使用一样的名称。

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
     <build>
         <plugins>
             <plugin>
                 <groupId>org.springframework.boot</groupId>
                 <artifactId>spring-boot-maven-plugin</artifactId>
                 <configuration>
                     <fork>true</fork>
                     <!-->jar包名称<-->
                     <finalName>app</finalName>
                     <!-->启动类全路径<-->
                     <mainClass>com.xxx.xx.xx.xx.xx.xxApplication</mainClass>
                 </configuration>
                 <executions>
                     <execution>
                         <goals>
                             <goal>repackage</goal>
                         </goals>
                     </execution>
                 </executions>
             </plugin>
         </plugins>
     </build>
请我喝杯水
SoulChild 微信号 微信号
SoulChild 微信打赏 微信打赏
0%