要創建一個可執行的jar,我們需要添加spring-boot-maven-plugin到我們的 pom.xml。為此,請在該dependencies部分正下方插入以下幾行:
阿新 • • 發佈:2017-12-12
pos pen 如果 個人 uil sta type version port
要創建一個可執行的jar,我們需要添加spring-boot-maven-plugin
到我們的 pom.xml
。為此,請在該dependencies
部分正下方插入以下幾行:
1 <build> 2 <plugins> 3 <plugin> 4 <groupId> org.springframework.boot </ groupId> 5 <artifactId> spring-boot-maven-plugin </ artifactId> 6</ plugin> 7 </ plugins> 8 </ build>
不是每個人都喜歡從spring-boot-starter-parent
POM 繼承。你可能有你自己的企業標準的父母,你需要使用或者你可能更喜歡顯式聲明所有的Maven配置。
如果你不想使用它spring-boot-starter-parent
,你仍然可以通過使用一個scope=import
依賴來保持依賴管理(而不是插件管理)的好處 ,如下所示:
1 <dependencyManagement> 2 <dependencies> 3<dependency> 4 <!-- Import dependency management from Spring Boot --> 5 <groupId>org.springframework.boot</groupId> 6 <artifactId>spring-boot-dependencies</artifactId> 7 <version>2.0.0.BUILD-SNAPSHOT</version> 8<type>pom</type> 9 <scope>import</scope> 10 </dependency> 11 </dependencies> 12 </dependencyManagement>
要創建一個可執行的jar,我們需要添加spring-boot-maven-plugin到我們的 pom.xml。為此,請在該dependencies部分正下方插入以下幾行: