Download json-path-1.1.0.jar file

Introduction

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

License

Apache License

Type List

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

META-INF/MANIFEST.MF
META-INF/maven/com.jayway.jsonpath/json-path/pom.properties
META-INF/maven/com.jayway.jsonpath/json-path/pom.xml
com.jayway.jsonpath.Configuration.class
com.jayway.jsonpath.Criteria.class
com.jayway.jsonpath.Filter.class
com.jayway.jsonpath.InvalidCriteriaException.class
com.jayway.jsonpath.InvalidJsonException.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.ValueCompareException.class
com.jayway.jsonpath.internal.Cache.class
com.jayway.jsonpath.internal.CompiledPath.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.Utils.class
com.jayway.jsonpath.internal.spi.json.AbstractJsonProvider.class
com.jayway.jsonpath.internal.spi.json.GsonJsonProvider.class
com.jayway.jsonpath.internal.spi.json.JacksonJsonProvider.class
com.jayway.jsonpath.internal.spi.json.JsonSmartJsonProvider.class
com.jayway.jsonpath.internal.spi.mapper.DateMapper.class
com.jayway.jsonpath.internal.spi.mapper.DefaultMappingProvider.class
com.jayway.jsonpath.internal.spi.mapper.GsonMapper.class
com.jayway.jsonpath.internal.spi.mapper.GsonMappingProvider.class
com.jayway.jsonpath.internal.spi.mapper.JacksonMappingProvider.class
com.jayway.jsonpath.internal.spi.mapper.Mapper.class
com.jayway.jsonpath.internal.spi.mapper.MapperBase.class
com.jayway.jsonpath.internal.spi.mapper.NumberMapper.class
com.jayway.jsonpath.internal.spi.mapper.StringMapper.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.http.HttpProvider.class
com.jayway.jsonpath.spi.http.HttpProviderFactory.class
com.jayway.jsonpath.spi.json.JsonProvider.class
com.jayway.jsonpath.spi.json.Mode.class
com.jayway.jsonpath.spi.mapper.MappingException.class
com.jayway.jsonpath.spi.mapper.MappingProvider.class

Pom

json-path-1.1.0.pom file content.

<?xml version="1.0"?>
<!--
  ~ Copyright 2010 the original author or authors.
  ~
  ~ Licensed under the Apache License, Version 2.0 (the "License");
  ~ you may not use this file except in compliance with the License.
  ~ You may obtain a copy of the License at
  ~
  ~ http://www.apache.org/licenses/LICENSE-2.0
  ~
  ~ Unless required by applicable law or agreed to in writing, software
  ~ distributed under the License is distributed on an "AS IS" BASIS,
  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  ~ See the License for the specific language governing permissions and
  ~ limitations under the License.
  -->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>com.jayway.jsonpath</groupId>
        <artifactId>json-path-parent</artifactId>
        <version>1.1.0</version>
    </parent>
    <artifactId>json-path</artifactId>
    <packaging>bundle</packaging>
    <name>json-path</name>
    <url>http://code.google.com/p/json-path/</url>
    <dependencies>
        <dependency>
            <groupId>net.minidev</groupId>
            <artifactId>json-smart</artifactId>
        </dependency>
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-databind</artifactId>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>com.google.code.gson</groupId>
            <artifactId>gson</artifactId>
            <optional>true</optional>
        </dependency>

    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
                <version>2.3.7</version>
                <extensions>true</extensions>
            </plugin>
        </plugins>
    </build>
</project>

POM Entry

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

Download

If you think the following json-path-1.1.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-1.1.0.jar file




PreviousNext

Related