Use Gson instead of Jackson by default

This commit is contained in:
Dave Syer
2018-02-23 09:46:42 +00:00
parent a2a2932715
commit 975398d30c
5 changed files with 257 additions and 13 deletions

View File

@@ -18,6 +18,16 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>