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.12" ;
25
25
sourceCompatibility = JavaVersion . VERSION_1_7 ;
26
26
targetCompatibility = JavaVersion . VERSION_1_7 ; // defaults to sourceCompatibility
27
- project. ext. description = " JSON Patch (RFC 6902) and JSON Merge Patch (RFC 7386) implementation in Java" ;
27
+
28
+ project. ext {
29
+ description = " JSON Patch (RFC 6902) and JSON Merge Patch (RFC 7386) implementation in Java" ;
30
+ }
28
31
29
32
/*
30
33
* List of dependencies
31
34
*/
32
35
dependencies {
33
36
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 " );
37
+ compile(group : " com.google.guava" , name : " guava" , version : " 28.2 -android" );
38
+ compile(group : " com.fasterxml.jackson.core" , name : " jackson-databind" , version : " 2.10.2 " );
36
39
compile(group : " com.github.java-json-tools" , name : " msg-simple" , version : " 1.2" );
37
40
38
- compile(group : " com.github.java-json-tools" , name : " jackson-coreutils" , version : " 1.11 " );
39
- testCompile(group : " org.testng" , name : " testng" , version : " 6.8.7 " ) {
41
+ compile(group : " com.github.java-json-tools" , name : " jackson-coreutils" , version : " 1.12 " );
42
+ testCompile(group : " org.testng" , name : " testng" , version : " 7.1.0 " ) {
40
43
exclude(group : " junit" , module : " junit" );
41
44
exclude(group : " org.beanshell" , module : " bsh" );
42
45
exclude(group : " org.yaml" , module : " snakeyaml" );
@@ -54,10 +57,10 @@ javadoc.options {
54
57
}
55
58
links(" https://docs.oracle.com/javase/7/docs/api/" );
56
59
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/" );
60
+ links(" https://fasterxml.github.com/jackson-databind/javadoc/2.10 /" );
61
+ links(" https://fasterxml.github.com/jackson-core/javadoc/2.10 /" );
62
+ links(" https://fasterxml.github.com/jackson-annotations/javadoc/2.10 /" );
63
+ links(" https://www.javadoc.io/doc/com.google.guava/guava/28.2 -android/" );
61
64
links(" https://java-json-tools.github.io/msg-simple/" );
62
65
links(" https://java-json-tools.github.io/jackson-coreutils/" );
63
66
}
0 commit comments