Update 13.1.1. Inheriting the starter parent.md

master
qibaoguang 2015-03-18 00:41:34 +08:00
parent 222b97066a
commit 869e24fdc6
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
### 13.1.1. 继承starter parent
想配置你的项目继承`spring-boot-starter-parent`只需要简单地设置`parent`为:
```xml
<!-- Inherit defaults from Spring Boot -->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.3.0.BUILD-SNAPSHOT</version>
</parent>
```
**注**你应该只需要在该依赖上指定Spring Boot版本。如果导入其他的starters你可以放心的省略版本号。