Authored by chunhua

update

Showing 1 changed file with 28 additions and 1 deletions
所有的工程都需要依赖的父POM. 缺少的部分请大家编辑这个文件,附加上去
\ No newline at end of file
## 说明
所有的工程都需要依赖的父POM.例如:
```xml
<parent>
<artifactId>api-parent</artifactId>
<groupId>com.yoho.api</groupId>
<version>1.0.0-SNAPSHOT</version>
</parent>
```
缺少的部分请大家编辑这个文件,附加上去 .
## 需要添加的
```xml
<dependency>
<groupId>xxxxxx</groupId>
<artifactId>xxxxxxx</artifactId>
<version>1.8.7</version>
</dependency>
```
\ No newline at end of file
... ...