MVN

com.github.anrosca : json-serde

Maven & Gradle

Dec 23, 2020
0 stars

JSON SERDE · Json serialization/deserialization library which can serialize to json complex object graphs (with cyclic dependencies) without imposing restrictions on objects from that graph (like to have getters and setters or a default constructor)

<dependency>
    <groupId>com.github.anrosca</groupId>
    <artifactId>json-serde</artifactId>
    <version>0.0.1</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

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

  • Latest Stable: 0.0.1

All Versions

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

Version Vulnerabilities Updated
0.0.x
json-serde-0.0.1

How to add a dependency to Maven

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

<dependency>
    <groupId>com.github.anrosca</groupId>
    <artifactId>json-serde</artifactId>
    <version>0.0.1</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.github.anrosca : json-serde gradle dependency to your build.gradle file:

implementation 'com.github.anrosca:json-serde:0.0.1'

Gradle Kotlin DSL: Add the following com.github.anrosca : json-serde gradle kotlin dependency to your build.gradle.kts file:

implementation("com.github.anrosca:json-serde:0.0.1")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.github.anrosca : json-serde sbt scala dependency to your build.sbt file:

libraryDependencies += "com.github.anrosca" % "json-serde" % "0.0.1"

Advertisement