Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
vishwakarma committed Aug 31, 2017
2 parents 62e17d4 + e36883a commit 49ee31e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
The source code is available under the Apache 2.0 license. I am actively looking for contributors so if you have ideas, code, bug reports, or fixes you would like to contribute please do so.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ all classes | 100% (6/ 6) | 93.6% (44/ 47) | 96.2% (332/ 345) |

### How to use:

### Current Version : 0.3.4
### Current Version : 0.3.5

Add following to `<dependencies/>` section of your pom.xml -

Expand Down Expand Up @@ -50,6 +50,11 @@ The algorithm which computes this JsonPatch currently generates following operat
- COPY
- TEST

## To turn off MOVE & COPY Operations
```xml
EnumSet<DiffFlags> flags = DiffFlags.dontNormalizeOpIntoMoveAndCopy().clone()
JsonNode patch = JsonDiff.asJson(JsonNode source, JsonNode target, flags)
```

### Apply Json Patch
```xml
Expand Down

0 comments on commit 49ee31e

Please sign in to comment.