Skip to content

Commit 4164f61

Browse files
committed
0.8.4
* json-schema-validator to 2.2.13 * json-schema-avro to 0.1.6 * json-patch to 1.12 * testng to 7.1.0
1 parent c099d39 commit 4164f61

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

project.gradle

+9-9
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* Project-specific settings. Unfortunately we cannot put the name in there!
2121
*/
2222
group = "com.github.java-json-tools";
23-
version = "0.8.4-SNAPSHOT";
23+
version = "0.8.4";
2424
sourceCompatibility = JavaVersion.VERSION_1_7;
2525
targetCompatibility = JavaVersion.VERSION_1_7; // defaults to sourceCompatibility
2626

@@ -33,7 +33,7 @@ project.ext {
3333
*/
3434
dependencies {
3535
compile(group: "com.github.java-json-tools", name: "json-schema-validator",
36-
version: "2.2.12");
36+
version: "2.2.13");
3737
compile(group: "com.github.reinert", name: "jjschema", version: "1.16") {
3838
exclude(group: "com.google.guava", module: "guava");
3939
exclude(group: "com.fasterxml.jackson.core", module: "jackson-core");
@@ -45,10 +45,10 @@ dependencies {
4545
exclude(group: "com.fasterxml.jackson.core", module: "jackson-databind");
4646
}
4747
compile(group: "com.github.java-json-tools", name: "json-schema-avro",
48-
version: "0.1.5");
48+
version: "0.1.6");
4949
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") {
5252
exclude(group: "junit", module: "junit");
5353
exclude(group: "org.beanshell", module: "bsh");
5454
exclude(group: "org.yaml", module: "snakeyaml");
@@ -64,10 +64,10 @@ javadoc.options {
6464
}
6565
links("https://docs.oracle.com/javase/7/docs/api/");
6666
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/");
7171
links("https://java-json-tools.github.io/msg-simple/");
7272
links("https://java-json-tools.github.io/json-schema-core/1.2.x/");
7373
links("https://java-json-tools.github.io/json-schema-validator/2.2.x/");

0 commit comments

Comments
 (0)