MVN

com.ssg.tools : JSONXML

Maven & Gradle

Oct 25, 2011

JSONXML · JSONXML project is library used to parse/format tree-like object structures in most popular text formats: XML and JSON. For parsing it accepts "java.io.Reader" and return java object. For formatting it accepts java object and "java.io.Writer". Object is generally structure that contains Map and/or List elements. Map is ordered set of named items. List is set of unnamed items. Reflection may be used to convert objects into set of maps/lists and vice versa. JSON parser is implemented explicitly. XML parser is based on SAX parser and applies only certain rules for result. Library is designed to allow various entry points for variable decisions depending on end use needs. 1. Formats - formats are used to enable locale-specific parsing/formatting of numbers and dates. 2. ReflectiveBuilder - enables reflection. Default implementation uses getters/setters only. 3. ObjectsRegistry - used to keep track of parsed or formatted objects and allow resolvable references in formatted (text) form.

<dependency>
    <groupId>com.ssg.tools</groupId>
    <artifactId>JSONXML</artifactId>
    <version>2.0b</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.ssg.tools : JSONXML to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 2.0b

All Versions

Choose a version of com.ssg.tools : JSONXML to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
2.0b
JSONXML-2.0b
1.1
JSONXML-1.1
1.0
JSONXML-1.0

How to add a dependency to Maven

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

<dependency>
    <groupId>com.ssg.tools</groupId>
    <artifactId>JSONXML</artifactId>
    <version>2.0b</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.ssg.tools : JSONXML gradle dependency to your build.gradle file:

implementation 'com.ssg.tools:JSONXML:2.0b'

Gradle Kotlin DSL: Add the following com.ssg.tools : JSONXML gradle kotlin dependency to your build.gradle.kts file:

implementation("com.ssg.tools:JSONXML:2.0b")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.ssg.tools : JSONXML sbt scala dependency to your build.sbt file:

libraryDependencies += "com.ssg.tools" % "JSONXML" % "2.0b"