【英文】Maven项目指定打包后的文件名 Posted on 2022-10-31 Edited on 2023-12-04 Views: PrefaceSpecifying the file name for a Maven project after packaging. Specifying the file name after packaging through configuration file <fileName></fileName>: Specify the file name. pom.xml123456789<build> <fileName>app</fileName> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins></build> CompletionReferencesBilibili - Heima Programmer