json-parser
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.ramalapure</groupId>
<artifactId>json-parser</artifactId>
<version>1.1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.ramalapure</groupId>
<artifactId>json-parser</artifactId>
<version>1.1</version>
<name>JsonParser</name>
<description>The library performs an operation on JSON and returns CSV data in the following output formats: String, File, and Writer.</description>
<url>https://github.com/RamAlapure/jsonparser</url>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<id>alapureram</id>
<name>Ram Alapure</name>
<email>alapureram@gmail.com</email>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/RamAlapure/jsonparser.git</connection>
<developerConnection>scm:git:ssh://github.com/RamAlapure/jsonparser.git</developerConnection>
<url>https://github.com/RamAlapure/jsonparser</url>
</scm>
<dependencies>
<dependency>
<groupId>org.apache.metamodel</groupId>
<artifactId>MetaModel-core</artifactId>
<version>5.3.0</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.metamodel</groupId>
<artifactId>MetaModel-csv</artifactId>
<version>5.3.0</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.6</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
<version>2.4.0</version>
<scope>runtime</scope>
</dependency>
</dependencies>
</project>