MVN

com.supersoftcafe.json : json-stream-core

Maven & Gradle

Apr 12, 2016
1 stars

JSON Stream · A library for streaming through JSON and having events fired based on JsonPath matches. The key here is that it doesn't realise the whole object in heap so allowing you to process very large documents quickly and easily.

<dependency>
    <groupId>com.supersoftcafe.json</groupId>
    <artifactId>json-stream-core</artifactId>
    <version>0.2</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.supersoftcafe.json : json-stream-core to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.2

All Versions

Choose a version of com.supersoftcafe.json : json-stream-core to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.2
json-stream-core-0.2
0.1
json-stream-core-0.1

How to add a dependency to Maven

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

<dependency>
    <groupId>com.supersoftcafe.json</groupId>
    <artifactId>json-stream-core</artifactId>
    <version>0.2</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.supersoftcafe.json : json-stream-core gradle dependency to your build.gradle file:

implementation 'com.supersoftcafe.json:json-stream-core:0.2'

Gradle Kotlin DSL: Add the following com.supersoftcafe.json : json-stream-core gradle kotlin dependency to your build.gradle.kts file:

implementation("com.supersoftcafe.json:json-stream-core:0.2")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.supersoftcafe.json : json-stream-core sbt scala dependency to your build.sbt file:

libraryDependencies += "com.supersoftcafe.json" % "json-stream-core" % "0.2"