MVN

com.github.jsonj : jsonj

Maven & Gradle

Oct 10, 2012
43 stars

Json Java · A framework for working with json in Java the "proper" way. No mappings or model classes, it's all just lovely json, but in Java.

<dependency>
    <groupId>com.github.jsonj</groupId>
    <artifactId>jsonj</artifactId>
    <version>0.8</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.github.jsonj : jsonj to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.8

All Versions

Choose a version of com.github.jsonj : jsonj to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.8
jsonj-0.8
0.7
jsonj-0.7
0.6
jsonj-0.6

How to add a dependency to Maven

Add the following com.github.jsonj : jsonj maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.github.jsonj</groupId>
    <artifactId>jsonj</artifactId>
    <version>0.8</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.github.jsonj : jsonj gradle dependency to your build.gradle file:

implementation 'com.github.jsonj:jsonj:0.8'

Gradle Kotlin DSL: Add the following com.github.jsonj : jsonj gradle kotlin dependency to your build.gradle.kts file:

implementation("com.github.jsonj:jsonj:0.8")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.github.jsonj : jsonj sbt scala dependency to your build.sbt file:

libraryDependencies += "com.github.jsonj" % "jsonj" % "0.8"