This page gives you a quick reference to get Fastjson dependency for Maven or Gradle projects. You can also download the Fastjson jar dependency, the link given at the "Download JAR File" section.
Fastjson is a JSON processor (JSON parser + JSON generator) written in Java.
For more details about the proper version to use, check out the following Maven Central link.
Fastjson is a JSON processor (JSON parser + JSON generator) written in Java.
Fastjson Maven Dependency
Copy below Fastjson maven dependency and paste in your project pom.xml file:
<!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.62</version>
</dependency>
Fastjson Gradle Dependency
Copy below Fastjson gradle dependency and paste in your project build.gradle file:
// https://mvnrepository.com/artifact/com.alibaba/fastjson
compile group: 'com.alibaba', name: 'fastjson', version: '1.2.62'
Comments
Post a Comment