MVN

org.jsonx : runtime

Maven & Gradle

Feb 27, 2024

JSONx Runtime · The JSON/Java Runtime API is designed to bind JSON documents to Java objects. More specifically, the JSON/Java Runtime API provides a way for JSON objects whose structure is expressed in the JSON Schema Definition Language to be parsed and marshaled, to and from Java objects of strongly-typed classes. The JSON/Java Runtime API can also be used to validate JSON documents as they are parsed from text or marshaled from Java objects against a JSD. Thus, the JSON/Java Runtime API is a reference implementation of the validation and binding functionalities of the JSON Schema Definition Language.

<dependency>
    <groupId>org.jsonx</groupId>
    <artifactId>runtime</artifactId>
    <version>0.5.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.jsonx : runtime to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.5.0

All Versions

Choose a version of org.jsonx : runtime to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.5.x
runtime-0.5.0

How to add a dependency to Maven

Add the following org.jsonx : runtime maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.jsonx</groupId>
    <artifactId>runtime</artifactId>
    <version>0.5.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.jsonx : runtime gradle dependency to your build.gradle file:

implementation 'org.jsonx:runtime:0.5.0'

Gradle Kotlin DSL: Add the following org.jsonx : runtime gradle kotlin dependency to your build.gradle.kts file:

implementation("org.jsonx:runtime:0.5.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.jsonx : runtime sbt scala dependency to your build.sbt file:

libraryDependencies += "org.jsonx" % "runtime" % "0.5.0"

Advertisement