Fastjson Maven Dependency

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.

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>
For more details about the proper version to use, check out the following Maven Central link.

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'

Download JAR File

Check for Latest Release

Reference



Comments