Skip to content

Commit e346c91

Browse files
committed
1.12
* guava to 28.2-android * jackson-databind to 2.10.2 (CVE in 2.9.9) * jackson-coreutils to 1.12 * testng to 7.1.0
1 parent b4f9ccd commit e346c91

File tree

1 file changed

+13
-10
lines changed

1 file changed

+13
-10
lines changed

project.gradle

+13-10
Original file line numberDiff line numberDiff line change
@@ -21,22 +21,25 @@
2121
* Project-specific settings. Unfortunately we cannot put the name in there!
2222
*/
2323
group = "com.github.java-json-tools";
24-
version = "1.12-SNAPSHOT";
24+
version = "1.12";
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+
28+
project.ext {
29+
description = "JSON Patch (RFC 6902) and JSON Merge Patch (RFC 7386) implementation in Java";
30+
}
2831

2932
/*
3033
* List of dependencies
3134
*/
3235
dependencies {
3336
provided(group: "com.google.code.findbugs", name: "jsr305", version: "3.0.2");
34-
compile(group: "com.google.guava", name: "guava", version: "28.1-android");
35-
compile(group: "com.fasterxml.jackson.core", name: "jackson-databind", version: "2.9.9");
37+
compile(group: "com.google.guava", name: "guava", version: "28.2-android");
38+
compile(group: "com.fasterxml.jackson.core", name: "jackson-databind", version: "2.10.2");
3639
compile(group: "com.github.java-json-tools", name: "msg-simple", version: "1.2");
3740

38-
compile(group: "com.github.java-json-tools", name: "jackson-coreutils", version: "1.11");
39-
testCompile(group: "org.testng", name: "testng", version: "6.8.7") {
41+
compile(group: "com.github.java-json-tools", name: "jackson-coreutils", version: "1.12");
42+
testCompile(group: "org.testng", name: "testng", version: "7.1.0") {
4043
exclude(group: "junit", module: "junit");
4144
exclude(group: "org.beanshell", module: "bsh");
4245
exclude(group: "org.yaml", module: "snakeyaml");
@@ -54,10 +57,10 @@ javadoc.options {
5457
}
5558
links("https://docs.oracle.com/javase/7/docs/api/");
5659
links("https://www.javadoc.io/doc/com.google.code.findbugs/jsr305/3.0.2/");
57-
links("https://fasterxml.github.com/jackson-databind/javadoc/2.9/");
58-
links("https://fasterxml.github.com/jackson-core/javadoc/2.9/");
59-
links("https://fasterxml.github.com/jackson-annotations/javadoc/2.9/");
60-
links("https://www.javadoc.io/doc/com.google.guava/guava/28.1-android/");
60+
links("https://fasterxml.github.com/jackson-databind/javadoc/2.10/");
61+
links("https://fasterxml.github.com/jackson-core/javadoc/2.10/");
62+
links("https://fasterxml.github.com/jackson-annotations/javadoc/2.10/");
63+
links("https://www.javadoc.io/doc/com.google.guava/guava/28.2-android/");
6164
links("https://java-json-tools.github.io/msg-simple/");
6265
links("https://java-json-tools.github.io/jackson-coreutils/");
6366
}

0 commit comments

Comments
 (0)