Add snakeyaml to spring-boot-starter

Fixes gh-366
This commit is contained in:
Dave Syer 2014-02-18 10:25:26 +00:00
parent 77bac876ce
commit 8778e82752
2 changed files with 5 additions and 5 deletions

View File

@ -17,11 +17,6 @@
<groupId>${project.groupId}</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>spring-boot-starter-test</artifactId>

View File

@ -27,5 +27,10 @@
<artifactId>spring-boot-starter-logging</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<scope>runtime</scope>
</dependency>
</dependencies>
</project>