@@ -30,15 +30,20 @@ project.ext.description = "JSON Patch (RFC 6902) and JSON Merge Patch (RFC 7386)
30
30
* List of dependencies
31
31
*/
32
32
dependencies {
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" );
35
39
testCompile(group : " org.testng" , name : " testng" , version : " 6.8.7" ) {
36
40
exclude(group : " junit" , module : " junit" );
37
41
exclude(group : " org.beanshell" , module : " bsh" );
38
42
exclude(group : " org.yaml" , module : " snakeyaml" );
39
43
};
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" );
42
47
}
43
48
44
49
javadoc. options {
@@ -48,11 +53,11 @@ javadoc.options {
48
53
addStringOption(" -release" , " 7" );
49
54
}
50
55
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/" );
58
63
}
0 commit comments