Skip to content

Commit 9cc3259

Browse files
committed
Merge version updates from v1.12.
* jackson-databind to 2.10.2 (CVE in 2.9.9) * jsr305 to 3.0.2 * testng to 7.1.0 From commit 5565573.
1 parent 4c88491 commit 9cc3259

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

project.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ targetCompatibility = JavaVersion.VERSION_1_7; // defaults to sourceCompatibilit
2929
* List of dependencies
3030
*/
3131
dependencies {
32-
implementation(group: "com.fasterxml.jackson.core", name: "jackson-databind", version: "2.9.9");
32+
implementation(group: "com.fasterxml.jackson.core", name: "jackson-databind", version: "2.10.2");
3333
implementation(group: "com.github.java-json-tools", name: "msg-simple", version: "1.2");
34-
implementation(group: "com.google.code.findbugs", name: "jsr305", version: "2.0.1");
35-
testImplementation(group: "org.testng", name: "testng", version: "6.8.7") {
34+
implementation(group: "com.google.code.findbugs", name: "jsr305", version: "3.0.2");
35+
testImplementation(group: "org.testng", name: "testng", version: "7.1.0") {
3636
exclude(group: "junit", module: "junit");
3737
exclude(group: "org.beanshell", module: "bsh");
3838
exclude(group: "org.yaml", module: "snakeyaml");
@@ -48,8 +48,8 @@ javadoc {
4848
addStringOption("-release", "7");
4949
}
5050
links("https://docs.oracle.com/javase/7/docs/api/");
51-
links("https://www.javadoc.io/doc/com.google.code.findbugs/jsr305/3.0.1/");
52-
links("https://fasterxml.github.io/jackson-databind/javadoc/2.9/");
51+
links("https://www.javadoc.io/doc/com.google.code.findbugs/jsr305/3.0.2/");
52+
links("https://fasterxml.github.io/jackson-databind/javadoc/2.10/");
5353
links("https://java-json-tools.github.io/msg-simple/");
5454
}
5555
}

0 commit comments

Comments
 (0)