MVN

jakarta.json.bind : jakarta.json.bind-api

Maven & Gradle

Feb 24, 2022
195 usages
73 stars

JSON-B API · Jakarta JSON Binding is a standard binding layer for converting Java objects to/from JSON documents.

<dependency>
    <groupId>jakarta.json.bind</groupId>
    <artifactId>jakarta.json.bind-api</artifactId>
    <version>3.0.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of jakarta.json.bind : jakarta.json.bind-api to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 3.0.0
  • Latest Release Candidate: 3.0.0-RC1

All Versions

Choose a version of jakarta.json.bind : jakarta.json.bind-api to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
3.0.x
jakarta.json.bind-api-3.0.0
jakarta.json.bind-api-3.0.0-RC1
2.0.x
jakarta.json.bind-api-2.0.0
jakarta.json.bind-api-2.0.0-RC2
jakarta.json.bind-api-2.0.0-RC1
1.0.x
jakarta.json.bind-api-1.0.2
jakarta.json.bind-api-1.0.1

How to add a dependency to Maven

Add the following jakarta.json.bind : jakarta.json.bind-api maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>jakarta.json.bind</groupId>
    <artifactId>jakarta.json.bind-api</artifactId>
    <version>3.0.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following jakarta.json.bind : jakarta.json.bind-api gradle dependency to your build.gradle file:

implementation 'jakarta.json.bind:jakarta.json.bind-api:3.0.0'

Gradle Kotlin DSL: Add the following jakarta.json.bind : jakarta.json.bind-api gradle kotlin dependency to your build.gradle.kts file:

implementation("jakarta.json.bind:jakarta.json.bind-api:3.0.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following jakarta.json.bind : jakarta.json.bind-api sbt scala dependency to your build.sbt file:

libraryDependencies += "jakarta.json.bind" % "jakarta.json.bind-api" % "3.0.0"

Advertisement