MVN

com.unboundid.components : json

Maven & Gradle

Nov 22, 2011
2 usages

JSON in Java · JSON is a light-weight, language independent, data interchange format. The files in this package implement JSON encoders/decoders in Java. It also includes the capability to convert between JSON and XML, HTTP headers, Cookies, and CDL. This distribution is based off commit number 3e3951f1259 from https://github.com/douglascrockford/JSON-java.

<dependency>
    <groupId>com.unboundid.components</groupId>
    <artifactId>json</artifactId>
    <version>1.0.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.unboundid.components : json to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0.0

All Versions

Choose a version of com.unboundid.components : json to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.0.x
json-1.0.0

How to add a dependency to Maven

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

<dependency>
    <groupId>com.unboundid.components</groupId>
    <artifactId>json</artifactId>
    <version>1.0.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.unboundid.components : json gradle dependency to your build.gradle file:

implementation 'com.unboundid.components:json:1.0.0'

Gradle Kotlin DSL: Add the following com.unboundid.components : json gradle kotlin dependency to your build.gradle.kts file:

implementation("com.unboundid.components:json:1.0.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.unboundid.components : json sbt scala dependency to your build.sbt file:

libraryDependencies += "com.unboundid.components" % "json" % "1.0.0"