Make json framework optional (#11856)

* Make fastjson、gson optional

* Update pom.xml

* Make fastjson2 as default json framework
This commit is contained in:
liaozan 2023-03-21 16:30:03 +08:00 committed by GitHub
parent 0862819991
commit 9a5726499f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -65,12 +65,12 @@
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>