Merge pull request #621 from royclarkson/Gson_2_3

Upgrade to Gson 2.3
master
Juergen Hoeller 10 years ago
commit 29cb7808f2
  1. 2
      build.gradle
  2. 2
      spring-web/src/main/java/org/springframework/http/converter/json/GsonHttpMessageConverter.java

@ -34,7 +34,7 @@ configure(allprojects) { project ->
ext.hibVal5Version = "5.1.2.Final"
ext.hsqldbVersion = "2.3.2"
ext.jackson2Version = "2.4.1"
ext.gsonVersion = "2.2.4"
ext.gsonVersion = "2.3"
ext.jasperReportsVersion = "5.6.0"
ext.jettyVersion = "9.2.2.v20140723"
ext.jodaVersion = "2.4"

@ -47,7 +47,7 @@ import org.springframework.util.Assert;
* <p>This converter can be used to bind to typed beans or untyped {@code HashMap}s.
* By default, it supports {@code application/json} and {@code application/*+json}.
*
* <p>Tested against Gson 2.2; compatible with Gson 2.0 and higher.
* <p>Tested against Gson 2.3; compatible with Gson 2.0 and higher.
*
* @author Roy Clarkson
* @since 4.1

Loading…
Cancel
Save