20
20
* Project-specific settings. Unfortunately we cannot put the name in there!
21
21
*/
22
22
group = " com.github.java-json-tools" ;
23
- version = " 0.8.4-SNAPSHOT " ;
23
+ version = " 0.8.4" ;
24
24
sourceCompatibility = JavaVersion . VERSION_1_7 ;
25
25
targetCompatibility = JavaVersion . VERSION_1_7 ; // defaults to sourceCompatibility
26
26
@@ -33,7 +33,7 @@ project.ext {
33
33
*/
34
34
dependencies {
35
35
compile(group : " com.github.java-json-tools" , name : " json-schema-validator" ,
36
- version : " 2.2.12 " );
36
+ version : " 2.2.13 " );
37
37
compile(group : " com.github.reinert" , name : " jjschema" , version : " 1.16" ) {
38
38
exclude(group : " com.google.guava" , module : " guava" );
39
39
exclude(group : " com.fasterxml.jackson.core" , module : " jackson-core" );
@@ -45,10 +45,10 @@ dependencies {
45
45
exclude(group : " com.fasterxml.jackson.core" , module : " jackson-databind" );
46
46
}
47
47
compile(group : " com.github.java-json-tools" , name : " json-schema-avro" ,
48
- version : " 0.1.5 " );
48
+ version : " 0.1.6 " );
49
49
compile(group : " com.github.java-json-tools" , name : " json-patch" ,
50
- version : " 1.11 " );
51
- testCompile(group : " org.testng" , name : " testng" , version : " 6.10 " ) {
50
+ version : " 1.12 " );
51
+ testCompile(group : " org.testng" , name : " testng" , version : " 7.1.0 " ) {
52
52
exclude(group : " junit" , module : " junit" );
53
53
exclude(group : " org.beanshell" , module : " bsh" );
54
54
exclude(group : " org.yaml" , module : " snakeyaml" );
@@ -64,10 +64,10 @@ javadoc.options {
64
64
}
65
65
links(" https://docs.oracle.com/javase/7/docs/api/" );
66
66
links(" https://www.javadoc.io/doc/com.google.code.findbugs/jsr305/3.0.2/" );
67
- links(" https://fasterxml.github.com/jackson-databind/javadoc/2.9 /" );
68
- links(" https://fasterxml.github.com/jackson-core/javadoc/2.9 /" );
69
- links(" https://fasterxml.github.com/jackson-annotations/javadoc/2.9 /" );
70
- links(" https://www.javadoc.io/doc/com.google.guava/guava/28.1 -android/" );
67
+ links(" https://fasterxml.github.com/jackson-databind/javadoc/2.10 /" );
68
+ links(" https://fasterxml.github.com/jackson-core/javadoc/2.10 /" );
69
+ links(" https://fasterxml.github.com/jackson-annotations/javadoc/2.10 /" );
70
+ links(" https://www.javadoc.io/doc/com.google.guava/guava/28.2 -android/" );
71
71
links(" https://java-json-tools.github.io/msg-simple/" );
72
72
links(" https://java-json-tools.github.io/json-schema-core/1.2.x/" );
73
73
links(" https://java-json-tools.github.io/json-schema-validator/2.2.x/" );
0 commit comments