starter-parent

2015-09-14  本文已影响23人  chaofeng

可选择继承 spring-boot-starter-parent
``
<pre>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.3.0.BUILD-SNAPSHOT</version>
</parent>
</pre>

================================================

不愿意继承spring-boot-starter-parent,可通过scope=import的依赖
<pre>
<dependencyManagement>
<dependencies>
<dependency>

<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>1.3.0.BUILD-SNAPSHOT</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
</pre>

上一篇下一篇

猜你喜欢

热点阅读