json-parser

An implementation of Java JSON Parser

License

License

Categories

Categories

JSON Data
GroupId

GroupId

com.github.tnakamot
ArtifactId

ArtifactId

json-parser
Last Version

Last Version

0.2.1
Release Date

Release Date

Type

Type

jar
Description

Description

json-parser
An implementation of Java JSON Parser
Project URL

Project URL

https://tnakamot.github.io/json-parser/
Project Organization

Project Organization

com.github.tnakamot
Source Code Management

Source Code Management

https://github.com/tnakamot/json-parser

Download json-parser

How to add to project

<!-- https://jarcasting.com/artifacts/com.github.tnakamot/json-parser/ -->
<dependency>
    <groupId>com.github.tnakamot</groupId>
    <artifactId>json-parser</artifactId>
    <version>0.2.1</version>
</dependency>
// https://jarcasting.com/artifacts/com.github.tnakamot/json-parser/
implementation 'com.github.tnakamot:json-parser:0.2.1'
// https://jarcasting.com/artifacts/com.github.tnakamot/json-parser/
implementation ("com.github.tnakamot:json-parser:0.2.1")
'com.github.tnakamot:json-parser:jar:0.2.1'
<dependency org="com.github.tnakamot" name="json-parser" rev="0.2.1">
  <artifact name="json-parser" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.github.tnakamot', module='json-parser', version='0.2.1')
)
libraryDependencies += "com.github.tnakamot" % "json-parser" % "0.2.1"
[com.github.tnakamot/json-parser "0.2.1"]

Dependencies

compile (4)

Group / Artifact Type Version
org.scala-lang : scala-library jar 2.12.10
org.apache.commons : commons-text jar 1.8
commons-codec : commons-codec jar 1.14
org.jetbrains : annotations jar 16.0.1

test (2)

Group / Artifact Type Version
net.aichler : jupiter-interface jar 0.8.3
org.junit.jupiter : junit-jupiter-params jar 5.1.1

Project Modules

There are no modules declared in this project.

Java JSON Parser

Build Status GitHub Maven Central

This is a Java library to parse JSON text into Java objects. This library is compatible with RFC 8259.

The feature of this library is that it keeps the original JSON text information in the Java objects. Therefore, for example, your application can show where exactly (line number & column number) the JSON text has a problem if there is a semantic error.

Documents

Visit this website.

Versions

Version
0.2.1
0.2.0
0.1.0
0.0.6
0.0.5
0.0.4