Download json-path-2.0.0.jar file

Introduction

You can download json-path-2.0.0.jar in this page.

License

Apache License

Type List

json-path-2.0.0.jar file has the following types.

META-INF/MANIFEST.MF
com.jayway.jsonpath.Configuration.class
com.jayway.jsonpath.Criteria.class
com.jayway.jsonpath.DocumentContext.class
com.jayway.jsonpath.EvaluationListener.class
com.jayway.jsonpath.Filter.class
com.jayway.jsonpath.InvalidCriteriaException.class
com.jayway.jsonpath.InvalidJsonException.class
com.jayway.jsonpath.InvalidModificationException.class
com.jayway.jsonpath.InvalidPathException.class
com.jayway.jsonpath.JsonPath.class
com.jayway.jsonpath.JsonPathException.class
com.jayway.jsonpath.Option.class
com.jayway.jsonpath.ParseContext.class
com.jayway.jsonpath.PathNotFoundException.class
com.jayway.jsonpath.Predicate.class
com.jayway.jsonpath.ReadContext.class
com.jayway.jsonpath.TypeRef.class
com.jayway.jsonpath.ValueCompareException.class
com.jayway.jsonpath.WriteContext.class
com.jayway.jsonpath.internal.Cache.class
com.jayway.jsonpath.internal.CompiledPath.class
com.jayway.jsonpath.internal.DefaultsImpl.class
com.jayway.jsonpath.internal.EvaluationAbortException.class
com.jayway.jsonpath.internal.EvaluationContext.class
com.jayway.jsonpath.internal.JsonFormatter.class
com.jayway.jsonpath.internal.JsonReader.class
com.jayway.jsonpath.internal.Path.class
com.jayway.jsonpath.internal.PathCompiler.class
com.jayway.jsonpath.internal.PathRef.class
com.jayway.jsonpath.internal.Utils.class
com.jayway.jsonpath.internal.token.ArrayPathToken.class
com.jayway.jsonpath.internal.token.EvaluationContextImpl.class
com.jayway.jsonpath.internal.token.PathToken.class
com.jayway.jsonpath.internal.token.PredicateContextImpl.class
com.jayway.jsonpath.internal.token.PredicatePathToken.class
com.jayway.jsonpath.internal.token.PropertyPathToken.class
com.jayway.jsonpath.internal.token.RootPathToken.class
com.jayway.jsonpath.internal.token.ScanPathToken.class
com.jayway.jsonpath.internal.token.WildcardPathToken.class
com.jayway.jsonpath.spi.json.AbstractJsonProvider.class
com.jayway.jsonpath.spi.json.GsonJsonProvider.class
com.jayway.jsonpath.spi.json.JacksonJsonNodeJsonProvider.class
com.jayway.jsonpath.spi.json.JacksonJsonProvider.class
com.jayway.jsonpath.spi.json.JsonProvider.class
com.jayway.jsonpath.spi.json.JsonSmartJsonProvider.class
com.jayway.jsonpath.spi.mapper.GsonMappingProvider.class
com.jayway.jsonpath.spi.mapper.JacksonMappingProvider.class
com.jayway.jsonpath.spi.mapper.JsonSmartMappingProvider.class
com.jayway.jsonpath.spi.mapper.MappingException.class
com.jayway.jsonpath.spi.mapper.MappingProvider.class

Pom

json-path-2.0.0.pom file content.

<?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.jayway.jsonpath</groupId>
  <artifactId>json-path</artifactId>
  <version>2.0.0</version>
  <name>Json Path</name>
  <description>Java port of Stefan Goessner JsonPath.</description>
  <url>https://github.com/jayway/JsonPath</url>
  <licenses>
    <license>
      <name>The Apache Software License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>kalle.stenflo</id>
      <name>Kalle Stenflo</name>
      <email>kalle.stenflo (a) gmail.com</email>
    </developer>
  </developers>
  <scm>
    <connection>scm:git:git://github.com/jayway/JsonPath.git</connection>
    <developerConnection>scm:git:git://github.com/jayway/JsonPath.git</developerConnection>
    <url>scm:git:git://github.com/jayway/JsonPath.git</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
      <version>1.7.10</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>net.minidev</groupId>
      <artifactId>json-smart</artifactId>
      <version>2.1.1</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>com.google.code.gson</groupId>
      <artifactId>gson</artifactId>
      <version>2.3.1</version>
      <scope>compile</scope>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-databind</artifactId>
      <version>2.4.5</version>
      <scope>compile</scope>
      <optional>true</optional>
    </dependency>
  </dependencies>
</project>

POM Entry

<dependency>
   <groupId>com.jayway.jsonpath</groupId>
   <artifactId>json-path</artifactId>
   <version>2.0.0</version>
</dependency>

Download

If you think the following json-path-2.0.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download json-path-2.0.0.jar file




PreviousNext

Related