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.1.6-SNAPSHOT " ;
23
+ version = " 0.1.6" ;
24
24
sourceCompatibility = JavaVersion . VERSION_1_7 ;
25
25
targetCompatibility = JavaVersion . VERSION_1_7 ; // defaults to sourceCompatibility
26
26
@@ -33,18 +33,18 @@ project.ext {
33
33
*/
34
34
dependencies {
35
35
compile(group : " com.github.java-json-tools" , name : " json-schema-core" ,
36
- version : " 1.2.12 " );
36
+ version : " 1.2.13 " );
37
37
compile(group : " com.github.java-json-tools" , name : " json-schema-validator" ,
38
- version : " 2.2.12 " );
38
+ version : " 2.2.13 " );
39
39
compile(group : " org.apache.avro" , name : " avro" , version : " 1.9.1" ) {
40
40
exclude(group : " org.slf4j" , module : " slf4j-api" );
41
41
exclude(group : " org.apache.commons" , module : " commons-compress" );
42
42
exclude(group : " com.thoughtworks.paranamer" , module : " paranamer" );
43
43
exclude(group : " org.xerial.snappy" , module : " snappy-java" );
44
44
}
45
45
compile(group : " com.fasterxml.jackson.core" , name : " jackson-databind" ,
46
- version : " 2.9.9 " );
47
- testCompile(group : " org.testng" , name : " testng" , version : " 6.8.7 " ) {
46
+ version : " 2.10.2 " );
47
+ testCompile(group : " org.testng" , name : " testng" , version : " 7.1.0 " ) {
48
48
exclude(group : " junit" , module : " junit" );
49
49
exclude(group : " org.beanshell" , module : " bsh" );
50
50
exclude(group : " org.yaml" , module : " snakeyaml" );
@@ -60,10 +60,10 @@ javadoc.options {
60
60
}
61
61
links(" https://docs.oracle.com/javase/7/docs/api/" );
62
62
links(" https://www.javadoc.io/doc/com.google.code.findbugs/jsr305/3.0.2/" );
63
- links(" https://fasterxml.github.com/jackson-databind/javadoc/2.9 /" );
64
- links(" https://fasterxml.github.com/jackson-core/javadoc/2.9 /" );
65
- links(" https://fasterxml.github.com/jackson-annotations/javadoc/2.9 /" );
66
- links(" https://www.javadoc.io/doc/com.google.guava/guava/28.1 -android/" );
63
+ links(" https://fasterxml.github.com/jackson-databind/javadoc/2.10 /" );
64
+ links(" https://fasterxml.github.com/jackson-core/javadoc/2.10 /" );
65
+ links(" https://fasterxml.github.com/jackson-annotations/javadoc/2.10 /" );
66
+ links(" https://www.javadoc.io/doc/com.google.guava/guava/28.2 -android/" );
67
67
links(" https://java-json-tools.github.io/msg-simple/" );
68
68
links(" https://java-json-tools.github.io/json-schema-core/1.2.x/" );
69
69
links(" https://java-json-tools.github.io/json-schema-validator/2.2.x/" );
0 commit comments