Download json-patch-1.9.jar file

Introduction

You can download json-patch-1.9.jar in this page.

License

Lesser General Public License, version 3 or greater

Type List

json-patch-1.9.jar file has the following types.

META-INF/ASL-2.0.txt
META-INF/LGPL-3.0.txt
META-INF/LICENSE
META-INF/MANIFEST.MF
com.github.fge.jsonpatch.AddOperation.class
com.github.fge.jsonpatch.CopyOperation.class
com.github.fge.jsonpatch.DualPathOperation.class
com.github.fge.jsonpatch.JsonPatch.class
com.github.fge.jsonpatch.JsonPatchException.class
com.github.fge.jsonpatch.JsonPatchMessages.class
com.github.fge.jsonpatch.JsonPatchOperation.class
com.github.fge.jsonpatch.MoveOperation.class
com.github.fge.jsonpatch.PathValueOperation.class
com.github.fge.jsonpatch.RemoveOperation.class
com.github.fge.jsonpatch.ReplaceOperation.class
com.github.fge.jsonpatch.TestOperation.class
com.github.fge.jsonpatch.diff.DiffOperation.class
com.github.fge.jsonpatch.diff.DiffProcessor.class
com.github.fge.jsonpatch.diff.JsonDiff.class
com.github.fge.jsonpatch.mergepatch.JsonMergePatch.class
com.github.fge.jsonpatch.mergepatch.JsonMergePatchDeserializer.class
com.github.fge.jsonpatch.mergepatch.NonObjectMergePatch.class
com.github.fge.jsonpatch.mergepatch.ObjectMergePatch.class
com/github/fge/jsonpatch/messages.properties

Pom

json-patch-1.9.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.github.fge</groupId>
  <artifactId>json-patch</artifactId>
  <version>1.9</version>
  <name>json-patch</name>
  <description>JSON Patch (RFC 6902) and JSON Merge Patch (RFC 7386) implementation in Java</description>
  <url>https://github.com/fge/json-patch</url>
  <licenses>
    <license>
      <name>Lesser General Public License, version 3 or greater</name>
      <url>http://www.gnu.org/licenses/lgpl.html</url>
      <distribution>repo</distribution>
    </license>
    <license>
      <name>Apache Software License, version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>fge</id>
      <name>Francis Galiegue</name>
      <email>fgaliegue@gmail.com</email>
    </developer>
  </developers>
  <scm>
    <connection>git@github.com:fge/json-patch</connection>
    <developerConnection>https://github.com/fge/json-patch.git</developerConnection>
    <url>git@github.com:fge/json-patch</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>org.mockito</groupId>
      <artifactId>mockito-core</artifactId>
      <version>1.9.5</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.testng</groupId>
      <artifactId>testng</artifactId>
      <version>6.8.7</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>snakeyaml</artifactId>
          <groupId>org.yaml</groupId>
        </exclusion>
        <exclusion>
          <artifactId>bsh</artifactId>
          <groupId>org.beanshell</groupId>
        </exclusion>
        <exclusion>
          <artifactId>junit</artifactId>
          <groupId>junit</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>com.github.fge</groupId>
      <artifactId>jackson-coreutils</artifactId>
      <version>1.6</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.assertj</groupId>
      <artifactId>assertj-core</artifactId>
      <version>1.7.0</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>com.google.code.findbugs</groupId>
      <artifactId>jsr305</artifactId>
      <version>2.0.1</version>
      <scope>provided</scope>
    </dependency>
  </dependencies>
</project>

POM Entry

<dependency>
   <groupId>com.github.fge</groupId>
   <artifactId>json-patch</artifactId>
   <version>1.9</version>
</dependency>

Download

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



Download json-patch-1.9.jar file




PreviousNext

Related