21
21
* Project-specific settings. Unfortunately we cannot put the name in there!
22
22
*/
23
23
group = " com.github.java-json-tools" ;
24
- version = " 1.12 -SNAPSHOT" ;
24
+ version = " 1.13 -SNAPSHOT" ;
25
25
sourceCompatibility = JavaVersion . VERSION_1_7 ;
26
26
targetCompatibility = JavaVersion . VERSION_1_7 ; // defaults to sourceCompatibility
27
27
project. ext. description = " JSON Patch (RFC 6902) and JSON Merge Patch (RFC 7386) implementation in Java" ;
@@ -31,11 +31,11 @@ project.ext.description = "JSON Patch (RFC 6902) and JSON Merge Patch (RFC 7386)
31
31
*/
32
32
dependencies {
33
33
provided(group : " com.google.code.findbugs" , name : " jsr305" , version : " 3.0.2" );
34
- compile(group : " com.fasterxml.jackson.core" , name : " jackson-databind" , version : " 2.9.9 " );
34
+ compile(group : " com.fasterxml.jackson.core" , name : " jackson-databind" , version : " 2.11.0 " );
35
35
compile(group : " com.github.java-json-tools" , name : " msg-simple" , version : " 1.2" );
36
36
37
37
compile(group : " com.github.java-json-tools" , name : " jackson-coreutils" , version : " 2.0-SNAPSHOT" );
38
- testCompile(group : " org.testng" , name : " testng" , version : " 6.8.7 " ) {
38
+ testCompile(group : " org.testng" , name : " testng" , version : " 7.1.0 " ) {
39
39
exclude(group : " junit" , module : " junit" );
40
40
exclude(group : " org.beanshell" , module : " bsh" );
41
41
exclude(group : " org.yaml" , module : " snakeyaml" );
@@ -54,9 +54,9 @@ javadoc.options {
54
54
}
55
55
links(" https://docs.oracle.com/javase/7/docs/api/" );
56
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 /" );
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 /" );
60
60
links(" https://www.javadoc.io/doc/com.google.guava/guava/28.1-android/" );
61
61
links(" https://java-json-tools.github.io/msg-simple/" );
62
62
links(" https://java-json-tools.github.io/jackson-coreutils/" );
0 commit comments