Skip to content

Commit 30e2ba5

Browse files
[US642] Update project settings (#3)
1 parent 02fd39d commit 30e2ba5

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

project.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
* Project-specific settings. Unfortunately we cannot put the name in there!
2222
*/
2323
group = "com.github.java-json-tools";
24-
version = "1.13";
24+
version = "2.0.0";
2525
sourceCompatibility = JavaVersion.VERSION_1_7;
2626
targetCompatibility = JavaVersion.VERSION_1_7; // defaults to sourceCompatibility
27-
project.ext.description = "JSON Patch (RFC 6902) and JSON Merge Patch (RFC 7386) implementation in Java";
27+
project.ext.description = "JSON Patch (RFC 6902) and JSON Merge Patch (RFC 7386) implementation in Java, using extended TMF620 JsonPath syntax";
2828

2929
/*
3030
* List of dependencies
@@ -54,9 +54,9 @@ javadoc.options {
5454
}
5555
links("https://docs.oracle.com/javase/7/docs/api/");
5656
links("https://www.javadoc.io/doc/com.google.code.findbugs/jsr305/3.0.2/");
57-
links("https://fasterxml.github.com/jackson-databind/javadoc/2.11/");
58-
links("https://fasterxml.github.com/jackson-core/javadoc/2.11/");
59-
links("https://fasterxml.github.com/jackson-annotations/javadoc/2.11/");
57+
links("https://javadoc.io/doc/com.fasterxml.jackson.core/jackson-databind/2.11.4/index.html");
58+
links("https://javadoc.io/doc/com.fasterxml.jackson.core/jackson-core/2.11.4/index.html");
59+
links("https://javadoc.io/doc/com.fasterxml.jackson.core/jackson-annotations/2.11.4/index.html");
6060
links("https://www.javadoc.io/doc/com.google.guava/guava/28.2-android/");
6161
links("https://java-json-tools.github.io/msg-simple/");
6262
links("https://java-json-tools.github.io/jackson-coreutils/");

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
* - ASL 2.0: http://www.apache.org/licenses/LICENSE-2.0.txt
1818
*/
1919

20-
rootProject.name = "json-patch";
20+
rootProject.name = "json-patch-query";

0 commit comments

Comments
 (0)