1. 程式人生 > >springboot maven 專案打包jar 最後 名稱 自定義

springboot maven 專案打包jar 最後 名稱 自定義

maven 檔案打包,輸入 :package -Dmaven.test.skip=true 進行打包,  一般生成的jar 檔案 名稱是專案名+版本號這樣的

如何在pom.xml 中加入finalname  屬性,就可以獲得穩定的jar 名稱

    <build>
		<finalName>pay</finalName>
		<plugins>
			<plugin>
				<groupId>org.springframework.boot</groupId>
				<artifactId>spring-boot-maven-plugin</artifactId>
			</plugin>
			<plugin>
				<artifactId>maven-compiler-plugin</artifactId>
				<configuration>
					<jvmArguments>-Dfile.encoding=UTF-8</jvmArguments>
					<source>1.8</source>
					<target>1.8</target>
				</configuration>
			</plugin>
		</plugins>
	</build>

這樣最好就能生產  名為  pay.jar  的jar包。