diff --git a/androidjson-to-easyjson/pom.xml b/androidjson-to-easyjson/pom.xml
index 298a7041..7a233325 100644
--- a/androidjson-to-easyjson/pom.xml
+++ b/androidjson-to-easyjson/pom.xml
@@ -5,7 +5,7 @@
com.github.fangjinuo.easyjson
easyjson
- 3.2.7
+ 3.2.8
4.0.0
diff --git a/boonjson-to-easyjson/pom.xml b/boonjson-to-easyjson/pom.xml
index 1d342463..e386bf5b 100644
--- a/boonjson-to-easyjson/pom.xml
+++ b/boonjson-to-easyjson/pom.xml
@@ -5,7 +5,7 @@
com.github.fangjinuo.easyjson
easyjson
- 3.2.7
+ 3.2.8
4.0.0
diff --git a/easyjson-core/pom.xml b/easyjson-core/pom.xml
index bc1a93e1..9d823cdb 100644
--- a/easyjson-core/pom.xml
+++ b/easyjson-core/pom.xml
@@ -5,7 +5,7 @@
com.github.fangjinuo.easyjson
easyjson
- 3.2.7
+ 3.2.8
4.0.0
diff --git a/easyjson-fastjson/pom.xml b/easyjson-fastjson/pom.xml
index c6dcc675..dfa8fdc4 100644
--- a/easyjson-fastjson/pom.xml
+++ b/easyjson-fastjson/pom.xml
@@ -6,7 +6,7 @@
com.github.fangjinuo.easyjson
easyjson
- 3.2.7
+ 3.2.8
4.0.0
diff --git a/easyjson-gson/pom.xml b/easyjson-gson/pom.xml
index 798f0a18..954a19b9 100644
--- a/easyjson-gson/pom.xml
+++ b/easyjson-gson/pom.xml
@@ -6,7 +6,7 @@
com.github.fangjinuo.easyjson
easyjson
- 3.2.7
+ 3.2.8
4.0.0
diff --git a/easyjson-jackson/pom.xml b/easyjson-jackson/pom.xml
index 79ff577d..81ee57f6 100644
--- a/easyjson-jackson/pom.xml
+++ b/easyjson-jackson/pom.xml
@@ -6,7 +6,7 @@
com.github.fangjinuo.easyjson
easyjson
- 3.2.7
+ 3.2.8
4.0.0
diff --git a/easyjson-jackson/src/main/java/com/jn/easyjson/jackson/deserializer/DateDeserializer.java b/easyjson-jackson/src/main/java/com/jn/easyjson/jackson/deserializer/DateDeserializer.java
index 374baf4e..4c5a64dd 100644
--- a/easyjson-jackson/src/main/java/com/jn/easyjson/jackson/deserializer/DateDeserializer.java
+++ b/easyjson-jackson/src/main/java/com/jn/easyjson/jackson/deserializer/DateDeserializer.java
@@ -118,13 +118,15 @@ private Date parseDate(JsonParser p, DeserializationContext ctx) throws IOExcept
try {
return df.parse(p.getValueAsString());
} catch (ParseException e) {
- logger.error(e.getMessage(),e);
+ logger.error(e.getMessage(), e);
return null;
}
- } else if (usingToString) {
- return new Date(p.getValueAsString());
} else {
- return null;
+ if (usingToString) {
+ return new Date(p.getValueAsString());
+ } else {
+ return ctx.parseDate(p.getValueAsString());
+ }
}
}
if (curr.isNumeric()) {
diff --git a/easyjson-jackson/src/main/java/com/jn/easyjson/jackson/ext/EasyJsonBeanDeserializerBuilder.java b/easyjson-jackson/src/main/java/com/jn/easyjson/jackson/ext/EasyJsonBeanDeserializerBuilder.java
index 8ccc91fd..97fbd1cd 100644
--- a/easyjson-jackson/src/main/java/com/jn/easyjson/jackson/ext/EasyJsonBeanDeserializerBuilder.java
+++ b/easyjson-jackson/src/main/java/com/jn/easyjson/jackson/ext/EasyJsonBeanDeserializerBuilder.java
@@ -196,7 +196,7 @@ public JsonDeserializer> build() {
private BeanPropertyMap createPropertyMap(Collection props) {
boolean caseInsensitive = getDeserializationConfig().isEnabled(MapperFeature.ACCEPT_CASE_INSENSITIVE_PROPERTIES);
if (BeanPropertyMap_construct_3args_method != null) {
- Reflects.invoke(BeanPropertyMap_construct_3args_method, null, new Object[]{props, caseInsensitive, constructBeanPropertyMap(props)}, true, true);
+ return Reflects.invoke(BeanPropertyMap_construct_3args_method, null, new Object[]{props, caseInsensitive, constructBeanPropertyMap(props)}, true, true);
}
return BeanPropertyMap.construct(props, getDeserializationConfig().isEnabled(MapperFeature.ACCEPT_CASE_INSENSITIVE_PROPERTIES));
}
diff --git a/easyjson-javaxjson/pom.xml b/easyjson-javaxjson/pom.xml
index dbdd3a98..c0dc04b3 100644
--- a/easyjson-javaxjson/pom.xml
+++ b/easyjson-javaxjson/pom.xml
@@ -5,7 +5,7 @@
easyjson
com.github.fangjinuo.easyjson
- 3.2.7
+ 3.2.8
4.0.0
diff --git a/easyjson-test/easyjson-examples/pom.xml b/easyjson-test/easyjson-examples/pom.xml
index ee005690..3edf7ec3 100644
--- a/easyjson-test/easyjson-examples/pom.xml
+++ b/easyjson-test/easyjson-examples/pom.xml
@@ -5,7 +5,7 @@
com.github.fangjinuo.easyjson
easyjson-test
- 3.2.7
+ 3.2.8
4.0.0
diff --git a/easyjson-test/easyjson-test-base/pom.xml b/easyjson-test/easyjson-test-base/pom.xml
index e9cde1f9..ba4dc653 100644
--- a/easyjson-test/easyjson-test-base/pom.xml
+++ b/easyjson-test/easyjson-test-base/pom.xml
@@ -7,7 +7,7 @@
com.github.fangjinuo.easyjson
easyjson-test
- 3.2.7
+ 3.2.8
easyjson-test-base
diff --git a/easyjson-test/easyjson-test-fastjson/easyjson-test-fastjson-base/pom.xml b/easyjson-test/easyjson-test-fastjson/easyjson-test-fastjson-base/pom.xml
index 314c793a..184ef7c1 100644
--- a/easyjson-test/easyjson-test-fastjson/easyjson-test-fastjson-base/pom.xml
+++ b/easyjson-test/easyjson-test-fastjson/easyjson-test-fastjson-base/pom.xml
@@ -7,7 +7,7 @@
com.github.fangjinuo.easyjson
easyjson-test-fastjson
- 3.2.7
+ 3.2.8
easyjson-test-fastjson-base
diff --git a/easyjson-test/easyjson-test-fastjson/easyjson-test-fastjson-impl/pom.xml b/easyjson-test/easyjson-test-fastjson/easyjson-test-fastjson-impl/pom.xml
index 1701f248..d081198f 100644
--- a/easyjson-test/easyjson-test-fastjson/easyjson-test-fastjson-impl/pom.xml
+++ b/easyjson-test/easyjson-test-fastjson/easyjson-test-fastjson-impl/pom.xml
@@ -7,7 +7,7 @@
com.github.fangjinuo.easyjson
easyjson-test-fastjson
- 3.2.7
+ 3.2.8
easyjson-test-fastjson-impl
diff --git a/easyjson-test/easyjson-test-fastjson/easyjson-test-fastjson-to-gson/pom.xml b/easyjson-test/easyjson-test-fastjson/easyjson-test-fastjson-to-gson/pom.xml
index eef9b51b..6f05110f 100644
--- a/easyjson-test/easyjson-test-fastjson/easyjson-test-fastjson-to-gson/pom.xml
+++ b/easyjson-test/easyjson-test-fastjson/easyjson-test-fastjson-to-gson/pom.xml
@@ -7,7 +7,7 @@
com.github.fangjinuo.easyjson
easyjson-test-fastjson
- 3.2.7
+ 3.2.8
easyjson-test-fastjson-to-gson
diff --git a/easyjson-test/easyjson-test-fastjson/easyjson-test-fastjson-to-jackson/pom.xml b/easyjson-test/easyjson-test-fastjson/easyjson-test-fastjson-to-jackson/pom.xml
index 54514df3..34a4a3b3 100644
--- a/easyjson-test/easyjson-test-fastjson/easyjson-test-fastjson-to-jackson/pom.xml
+++ b/easyjson-test/easyjson-test-fastjson/easyjson-test-fastjson-to-jackson/pom.xml
@@ -7,7 +7,7 @@
com.github.fangjinuo.easyjson
easyjson-test-fastjson
- 3.2.7
+ 3.2.8
easyjson-test-fastjson-to-jackson
@@ -19,6 +19,7 @@
1.32
+ 2.12.5
@@ -45,12 +46,12 @@
com.fasterxml.jackson.datatype
jackson-datatype-jsr310
- 2.12.5
+ ${jackson.version}
com.fasterxml.jackson.core
jackson-databind
- 2.12.5
+ ${jackson.version}
diff --git a/easyjson-test/easyjson-test-fastjson/easyjson-test-fastjson-to-jackson/src/test/java/com/jn/easyjson/tests/cases/fastjson_to_jackson/NoSpringTest1.java b/easyjson-test/easyjson-test-fastjson/easyjson-test-fastjson-to-jackson/src/test/java/com/jn/easyjson/tests/cases/fastjson_to_jackson/NoSpringTest1.java
new file mode 100644
index 00000000..fa3b62a4
--- /dev/null
+++ b/easyjson-test/easyjson-test-fastjson/easyjson-test-fastjson-to-jackson/src/test/java/com/jn/easyjson/tests/cases/fastjson_to_jackson/NoSpringTest1.java
@@ -0,0 +1,94 @@
+package com.jn.easyjson.tests.cases.fastjson_to_jackson;
+
+import com.alibaba.fastjson.JSON;
+import com.alibaba.fastjson.easyjson.FastEasyJsons;
+import com.fasterxml.jackson.databind.ObjectMapper;
+import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
+import com.fasterxml.jackson.databind.ser.DefaultSerializerProvider;
+import com.fasterxml.jackson.databind.util.StdConverter;
+import com.jn.easyjson.core.JsonHandler;
+import com.jn.easyjson.jackson.JacksonAdapter;
+import org.junit.Assert;
+
+import java.text.ParseException;
+import java.text.SimpleDateFormat;
+import java.util.Date;
+
+/**
+ *
+ *
+ * @author jiaxiaotong
+ * @version 1.0.0
+ * @createTime 2020/6/22 12:22 下午
+ */
+public class NoSpringTest1 {
+
+
+ public static void main(String[] args) throws Exception {
+ com.jn.easyjson.core.JSON json = FastEasyJsons.getJSONFactory(JSON.DEFAULT_GENERATE_FEATURE).get();
+ JsonHandler jsonHandler = json.getJsonHandler();
+ JacksonAdapter jacksonAdapter = (JacksonAdapter) jsonHandler;
+
+ ObjectMapper objectMapper = jacksonAdapter.getDelegate();
+ objectMapper.setDateFormat(new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"));
+ objectMapper.setSerializerProvider(new DefaultSerializerProvider.Impl());
+
+ String jsonStr = "{\"date\":\"1630484219.328283\",\"date1\":\"2021-07-10 01:01:01\"}";
+
+ Test test = JSON.parseObject(jsonStr, Test.class);
+
+ ObjectMapper objectMapper1 = new ObjectMapper();
+ objectMapper1.setDateFormat(new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"));
+ objectMapper1.setSerializerProvider(new DefaultSerializerProvider.Impl());
+
+ Test test1 = objectMapper1.readValue(jsonStr, Test.class);
+
+ Assert.assertEquals(test.getDate(), test1.getDate());
+ Assert.assertEquals(test.getDate1(), test1.getDate1());
+
+ }
+
+ public static class Test {
+
+ @JsonDeserialize(converter = StringToLocalDatetimeConverter.class)
+ private Date date;
+
+ private Date date1;
+
+ public Date getDate() {
+ return date;
+ }
+
+ public void setDate(Date date) {
+ this.date = date;
+ }
+
+ public Date getDate1() {
+ return date1;
+ }
+
+ public void setDate1(Date date1) {
+ this.date1 = date1;
+ }
+ }
+
+
+}
+
+class StringToLocalDatetimeConverter extends StdConverter {
+ @Override
+ public Date convert(String value) {
+ SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
+ if (value.contains(".")) {
+ value = value.split("\\.")[0];
+ return new Date(Long.parseLong(value));
+ } else {
+ try {
+ return sdf.parse(value);
+ } catch (ParseException e) {
+ e.printStackTrace();
+ }
+ }
+ return null;
+ }
+}
diff --git a/easyjson-test/easyjson-test-fastjson/pom.xml b/easyjson-test/easyjson-test-fastjson/pom.xml
index ab50b04b..3cd3304a 100644
--- a/easyjson-test/easyjson-test-fastjson/pom.xml
+++ b/easyjson-test/easyjson-test-fastjson/pom.xml
@@ -7,7 +7,7 @@
com.github.fangjinuo.easyjson
easyjson-test
- 3.2.7
+ 3.2.8
easyjson-test-fastjson
diff --git a/easyjson-test/easyjson-test-gson/easyjson-test-gson-base/pom.xml b/easyjson-test/easyjson-test-gson/easyjson-test-gson-base/pom.xml
index 07f797f1..1eed1fc3 100644
--- a/easyjson-test/easyjson-test-gson/easyjson-test-gson-base/pom.xml
+++ b/easyjson-test/easyjson-test-gson/easyjson-test-gson-base/pom.xml
@@ -7,7 +7,7 @@
com.github.fangjinuo.easyjson
easyjson-test-gson
- 3.2.7
+ 3.2.8
easyjson-test-gson-base
diff --git a/easyjson-test/easyjson-test-gson/easyjson-test-gson-impl/pom.xml b/easyjson-test/easyjson-test-gson/easyjson-test-gson-impl/pom.xml
index f25489fa..50559603 100644
--- a/easyjson-test/easyjson-test-gson/easyjson-test-gson-impl/pom.xml
+++ b/easyjson-test/easyjson-test-gson/easyjson-test-gson-impl/pom.xml
@@ -7,7 +7,7 @@
com.github.fangjinuo.easyjson
easyjson-test-gson
- 3.2.7
+ 3.2.8
easyjson-test-gson-impl
diff --git a/easyjson-test/easyjson-test-gson/easyjson-test-gson-to-jackson/pom.xml b/easyjson-test/easyjson-test-gson/easyjson-test-gson-to-jackson/pom.xml
index 9651c16b..1bac0cd1 100644
--- a/easyjson-test/easyjson-test-gson/easyjson-test-gson-to-jackson/pom.xml
+++ b/easyjson-test/easyjson-test-gson/easyjson-test-gson-to-jackson/pom.xml
@@ -5,7 +5,7 @@
com.github.fangjinuo.easyjson
easyjson-test-gson
- 3.2.7
+ 3.2.8
4.0.0
diff --git a/easyjson-test/easyjson-test-gson/easysjon-test-gson-to-fastjson/pom.xml b/easyjson-test/easyjson-test-gson/easysjon-test-gson-to-fastjson/pom.xml
index 00dbff08..90d7bede 100644
--- a/easyjson-test/easyjson-test-gson/easysjon-test-gson-to-fastjson/pom.xml
+++ b/easyjson-test/easyjson-test-gson/easysjon-test-gson-to-fastjson/pom.xml
@@ -5,7 +5,7 @@
com.github.fangjinuo.easyjson
easyjson-test-gson
- 3.2.7
+ 3.2.8
4.0.0
diff --git a/easyjson-test/easyjson-test-gson/pom.xml b/easyjson-test/easyjson-test-gson/pom.xml
index 720c82e9..df73e7ed 100644
--- a/easyjson-test/easyjson-test-gson/pom.xml
+++ b/easyjson-test/easyjson-test-gson/pom.xml
@@ -7,7 +7,7 @@
com.github.fangjinuo.easyjson
easyjson-test
- 3.2.7
+ 3.2.8
easyjson-test-gson
diff --git a/easyjson-test/easyjson-test-jackson/easyjson-test-jackson-base/pom.xml b/easyjson-test/easyjson-test-jackson/easyjson-test-jackson-base/pom.xml
index 6870041d..209ab494 100644
--- a/easyjson-test/easyjson-test-jackson/easyjson-test-jackson-base/pom.xml
+++ b/easyjson-test/easyjson-test-jackson/easyjson-test-jackson-base/pom.xml
@@ -7,7 +7,7 @@
com.github.fangjinuo.easyjson
easyjson-test-jackson
- 3.2.7
+ 3.2.8
easyjson-test-jackson-base
diff --git a/easyjson-test/easyjson-test-jackson/easyjson-test-jackson-impl/pom.xml b/easyjson-test/easyjson-test-jackson/easyjson-test-jackson-impl/pom.xml
index c66e5c22..f14c6839 100644
--- a/easyjson-test/easyjson-test-jackson/easyjson-test-jackson-impl/pom.xml
+++ b/easyjson-test/easyjson-test-jackson/easyjson-test-jackson-impl/pom.xml
@@ -7,7 +7,7 @@
com.github.fangjinuo.easyjson
easyjson-test-jackson
- 3.2.7
+ 3.2.8
easyjson-test-jackson-impl
diff --git a/easyjson-test/easyjson-test-jackson/pom.xml b/easyjson-test/easyjson-test-jackson/pom.xml
index 6140786e..1ede8bc1 100644
--- a/easyjson-test/easyjson-test-jackson/pom.xml
+++ b/easyjson-test/easyjson-test-jackson/pom.xml
@@ -7,7 +7,7 @@
com.github.fangjinuo.easyjson
easyjson-test
- 3.2.7
+ 3.2.8
easyjson-test-jackson
diff --git a/easyjson-test/easyjson-test-jsonlib/easyjson-test-jsonlib-base/pom.xml b/easyjson-test/easyjson-test-jsonlib/easyjson-test-jsonlib-base/pom.xml
index 1367fbf1..236be304 100644
--- a/easyjson-test/easyjson-test-jsonlib/easyjson-test-jsonlib-base/pom.xml
+++ b/easyjson-test/easyjson-test-jsonlib/easyjson-test-jsonlib-base/pom.xml
@@ -7,7 +7,7 @@
com.github.fangjinuo.easyjson
easyjson-test-jsonlib
- 3.2.7
+ 3.2.8
easyjson-test-jsonlib-base
diff --git a/easyjson-test/easyjson-test-jsonlib/easyjson-test-jsonlib-to-fastjson/pom.xml b/easyjson-test/easyjson-test-jsonlib/easyjson-test-jsonlib-to-fastjson/pom.xml
index ab3c335f..9f426a89 100644
--- a/easyjson-test/easyjson-test-jsonlib/easyjson-test-jsonlib-to-fastjson/pom.xml
+++ b/easyjson-test/easyjson-test-jsonlib/easyjson-test-jsonlib-to-fastjson/pom.xml
@@ -7,7 +7,7 @@
com.github.fangjinuo.easyjson
easyjson-test-jsonlib
- 3.2.7
+ 3.2.8
easyjson-test-jsonlib-to-fastjson
diff --git a/easyjson-test/easyjson-test-jsonlib/easyjson-test-jsonlib-to-gson/pom.xml b/easyjson-test/easyjson-test-jsonlib/easyjson-test-jsonlib-to-gson/pom.xml
index 78b3e4e1..8ea0d4be 100644
--- a/easyjson-test/easyjson-test-jsonlib/easyjson-test-jsonlib-to-gson/pom.xml
+++ b/easyjson-test/easyjson-test-jsonlib/easyjson-test-jsonlib-to-gson/pom.xml
@@ -7,7 +7,7 @@
com.github.fangjinuo.easyjson
easyjson-test-jsonlib
- 3.2.7
+ 3.2.8
easyjson-test-jsonlib-to-gson
diff --git a/easyjson-test/easyjson-test-jsonlib/easyjson-test-jsonlib-to-jackson/pom.xml b/easyjson-test/easyjson-test-jsonlib/easyjson-test-jsonlib-to-jackson/pom.xml
index 67fbb9c6..d8b553cc 100644
--- a/easyjson-test/easyjson-test-jsonlib/easyjson-test-jsonlib-to-jackson/pom.xml
+++ b/easyjson-test/easyjson-test-jsonlib/easyjson-test-jsonlib-to-jackson/pom.xml
@@ -7,7 +7,7 @@
com.github.fangjinuo.easyjson
easyjson-test-jsonlib
- 3.2.7
+ 3.2.8
easyjson-test-jsonlib-to-jackson
diff --git a/easyjson-test/easyjson-test-jsonlib/pom.xml b/easyjson-test/easyjson-test-jsonlib/pom.xml
index cc187db2..b5de0812 100644
--- a/easyjson-test/easyjson-test-jsonlib/pom.xml
+++ b/easyjson-test/easyjson-test-jsonlib/pom.xml
@@ -7,7 +7,7 @@
com.github.fangjinuo.easyjson
easyjson-test
- 3.2.7
+ 3.2.8
easyjson-test-jsonlib
diff --git a/easyjson-test/pom.xml b/easyjson-test/pom.xml
index e8f98973..05e1f4b6 100644
--- a/easyjson-test/pom.xml
+++ b/easyjson-test/pom.xml
@@ -7,7 +7,7 @@
com.github.fangjinuo.easyjson
easyjson
- 3.2.7
+ 3.2.8
easyjson-test
diff --git a/fastjson-to-easyjson/pom.xml b/fastjson-to-easyjson/pom.xml
index f4073ca3..c0e1be5c 100644
--- a/fastjson-to-easyjson/pom.xml
+++ b/fastjson-to-easyjson/pom.xml
@@ -6,7 +6,7 @@
com.github.fangjinuo.easyjson
easyjson
- 3.2.7
+ 3.2.8
4.0.0
diff --git a/gson-to-easyjson/pom.xml b/gson-to-easyjson/pom.xml
index 07627fd9..d649541a 100644
--- a/gson-to-easyjson/pom.xml
+++ b/gson-to-easyjson/pom.xml
@@ -5,7 +5,7 @@
com.github.fangjinuo.easyjson
easyjson
- 3.2.7
+ 3.2.8
4.0.0
diff --git a/jettison-to-easyjson/pom.xml b/jettison-to-easyjson/pom.xml
index 91b9b403..ca025acb 100644
--- a/jettison-to-easyjson/pom.xml
+++ b/jettison-to-easyjson/pom.xml
@@ -5,7 +5,7 @@
easyjson
com.github.fangjinuo.easyjson
- 3.2.7
+ 3.2.8
4.0.0
diff --git a/jsonlib-to-easyjson/pom.xml b/jsonlib-to-easyjson/pom.xml
index fc2d13a0..ff2afb65 100644
--- a/jsonlib-to-easyjson/pom.xml
+++ b/jsonlib-to-easyjson/pom.xml
@@ -5,7 +5,7 @@
com.github.fangjinuo.easyjson
easyjson
- 3.2.7
+ 3.2.8
4.0.0
diff --git a/jsonsmart-to-easyjson/pom.xml b/jsonsmart-to-easyjson/pom.xml
index 633d9119..85d09c65 100644
--- a/jsonsmart-to-easyjson/pom.xml
+++ b/jsonsmart-to-easyjson/pom.xml
@@ -6,7 +6,7 @@
com.github.fangjinuo.easyjson
easyjson
- 3.2.7
+ 3.2.8
4.0.0
diff --git a/minimaljson-to-easyjson/pom.xml b/minimaljson-to-easyjson/pom.xml
index f5cc66e0..1e4995fc 100644
--- a/minimaljson-to-easyjson/pom.xml
+++ b/minimaljson-to-easyjson/pom.xml
@@ -5,7 +5,7 @@
com.github.fangjinuo.easyjson
easyjson
- 3.2.7
+ 3.2.8
4.0.0
diff --git a/moshi-to-easyjson/pom.xml b/moshi-to-easyjson/pom.xml
index 42652254..c8ab98d0 100644
--- a/moshi-to-easyjson/pom.xml
+++ b/moshi-to-easyjson/pom.xml
@@ -6,7 +6,7 @@
com.github.fangjinuo.easyjson
easyjson
- 3.2.7
+ 3.2.8
4.0.0
diff --git a/orgjson-to-easyjson/pom.xml b/orgjson-to-easyjson/pom.xml
index 4e288a4f..939ff6c5 100644
--- a/orgjson-to-easyjson/pom.xml
+++ b/orgjson-to-easyjson/pom.xml
@@ -5,7 +5,7 @@
com.github.fangjinuo.easyjson
easyjson
- 3.2.7
+ 3.2.8
4.0.0
diff --git a/pom.xml b/pom.xml
index 0dc78f8b..4b2fd1c8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -6,7 +6,7 @@
com.github.fangjinuo.easyjson
easyjson
- 3.2.7
+ 3.2.8
easyjson-core
easyjson-gson
diff --git a/progsbase-to-easyjson/pom.xml b/progsbase-to-easyjson/pom.xml
index 2ff1e14c..aa02d44b 100644
--- a/progsbase-to-easyjson/pom.xml
+++ b/progsbase-to-easyjson/pom.xml
@@ -5,7 +5,7 @@
com.github.fangjinuo.easyjson
easyjson
- 3.2.7
+ 3.2.8
4.0.0
diff --git a/simplejson-to-easyjson/pom.xml b/simplejson-to-easyjson/pom.xml
index 7752a4dd..a5bfadf3 100644
--- a/simplejson-to-easyjson/pom.xml
+++ b/simplejson-to-easyjson/pom.xml
@@ -5,7 +5,7 @@
com.github.fangjinuo.easyjson
easyjson
- 3.2.7
+ 3.2.8
4.0.0