2121 * Project-specific settings. Unfortunately we cannot put the name in there!
2222 */
2323group = " com.github.java-json-tools" ;
24- version = " 1.12 -SNAPSHOT" ;
24+ version = " 1.13 -SNAPSHOT" ;
2525sourceCompatibility = JavaVersion . VERSION_1_7 ;
2626targetCompatibility = JavaVersion . VERSION_1_7 ; // defaults to sourceCompatibility
2727project. 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)
3131 */
3232dependencies {
3333 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 " );
3535 compile(group : " com.github.java-json-tools" , name : " msg-simple" , version : " 1.2" );
3636
3737 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 " ) {
3939 exclude(group : " junit" , module : " junit" );
4040 exclude(group : " org.beanshell" , module : " bsh" );
4141 exclude(group : " org.yaml" , module : " snakeyaml" );
@@ -54,9 +54,9 @@ javadoc.options {
5454 }
5555 links(" https://docs.oracle.com/javase/7/docs/api/" );
5656 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 /" );
6060 links(" https://www.javadoc.io/doc/com.google.guava/guava/28.1-android/" );
6161 links(" https://java-json-tools.github.io/msg-simple/" );
6262 links(" https://java-json-tools.github.io/jackson-coreutils/" );
0 commit comments