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.5 " ;
23
+ version = " 0.8.6-SNAPSHOT " ;
24
24
sourceCompatibility = JavaVersion . VERSION_1_7 ;
25
25
targetCompatibility = JavaVersion . VERSION_1_7 ; // defaults to sourceCompatibility
26
26
@@ -33,23 +33,23 @@ project.ext {
33
33
*/
34
34
dependencies {
35
35
compile(group : " com.github.java-json-tools" , name : " json-schema-validator" ,
36
- version : " 2.2.13 " );
36
+ version : " 2.2.14-SNAPSHOT " );
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-annotations" );
40
40
exclude(group : " com.fasterxml.jackson.core" , module : " jackson-core" );
41
41
exclude(group : " com.fasterxml.jackson.core" , module : " jackson-databind" );
42
42
}
43
43
compile(group : " org.jsonschema2pojo" ,
44
- name : " jsonschema2pojo-core" , version : " 1.0.1 " ) {
44
+ name : " jsonschema2pojo-core" , version : " 1.0.2 " ) {
45
45
exclude(group : " com.fasterxml.jackson.core" , module : " jackson-annotations" );
46
46
exclude(group : " com.fasterxml.jackson.core" , module : " jackson-core" );
47
47
exclude(group : " com.fasterxml.jackson.core" , module : " jackson-databind" );
48
48
}
49
49
compile(group : " com.github.java-json-tools" , name : " json-schema-avro" ,
50
- version : " 0.1.7 " );
50
+ version : " 0.1.8-SNAPSHOT " );
51
51
compile(group : " com.github.java-json-tools" , name : " json-patch" ,
52
- version : " 1.12 " );
52
+ version : " 1.13-SNAPSHOT " );
53
53
testCompile(group : " org.testng" , name : " testng" , version : " 7.1.0" ) {
54
54
exclude(group : " junit" , module : " junit" );
55
55
exclude(group : " org.beanshell" , module : " bsh" );
@@ -66,9 +66,9 @@ javadoc.options {
66
66
}
67
67
links(" https://docs.oracle.com/javase/7/docs/api/" );
68
68
links(" https://www.javadoc.io/doc/com.google.code.findbugs/jsr305/3.0.2/" );
69
- links(" https://fasterxml.github.com/jackson-databind/javadoc/2.10 /" );
70
- links(" https://fasterxml.github.com/jackson-core/javadoc/2.10 /" );
71
- links(" https://fasterxml.github.com/jackson-annotations/javadoc/2.10 /" );
69
+ links(" https://fasterxml.github.com/jackson-databind/javadoc/2.11 /" );
70
+ links(" https://fasterxml.github.com/jackson-core/javadoc/2.11 /" );
71
+ links(" https://fasterxml.github.com/jackson-annotations/javadoc/2.11 /" );
72
72
links(" https://www.javadoc.io/doc/com.google.guava/guava/28.2-android/" );
73
73
links(" https://java-json-tools.github.io/msg-simple/" );
74
74
links(" https://java-json-tools.github.io/json-schema-core/1.2.x/" );
0 commit comments