@@ -30,15 +30,20 @@ project.ext.description = "JSON Patch (RFC 6902) and JSON Merge Patch (RFC 7386)
3030 * List of dependencies
3131 */
3232dependencies {
33- provided(group : " com.google.code.findbugs" , name : " jsr305" , version : " 2.0.1" );
34- compile(group : " com.github.java-json-tools" , name : " jackson-coreutils" , version : " 1.9" );
33+ 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" );
36+ compile(group : " com.github.java-json-tools" , name : " msg-simple" , version : " 1.2" );
37+
38+ compile(group : " com.github.java-json-tools" , name : " jackson-coreutils" , version : " 1.11" );
3539 testCompile(group : " org.testng" , name : " testng" , version : " 6.8.7" ) {
3640 exclude(group : " junit" , module : " junit" );
3741 exclude(group : " org.beanshell" , module : " bsh" );
3842 exclude(group : " org.yaml" , module : " snakeyaml" );
3943 };
40- testCompile(group : " org.mockito" , name : " mockito-core" , version : " 1.9.5" );
41- testCompile(group : " org.assertj" , name : " assertj-core" , version : " 1.7.0" );
44+ testCompile(group : " org.mockito" , name : " mockito-core" , version : " 2.28.2" );
45+ // FIXME: update to 3.x once we're off of Java 7
46+ testCompile(group : " org.assertj" , name : " assertj-core" , version : " 2.9.1" );
4247}
4348
4449javadoc. options {
@@ -48,11 +53,11 @@ javadoc.options {
4853 addStringOption(" -release" , " 7" );
4954 }
5055 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.com/jackson-databind/javadoc/2.2.0 /" );
53- links(" https://fasterxml.github.com/jackson-core/javadoc/2.2.0 /" );
54- links(" https://fasterxml.github.com/jackson-annotations/javadoc/2.2.0 /" );
55- links(" https://www.javadoc.io/doc/com.google.guava/guava/16.0.1 /" );
56- links(" https://fge .github.io/msg-simple/" );
57- links(" https://fge .github.io/jackson-coreutils/" );
56+ 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 /" );
61+ links(" https://java-json-tools .github.io/msg-simple/" );
62+ links(" https://java-json-tools .github.io/jackson-coreutils/" );
5863}
0 commit comments