Skip to content

Commit 80923ab

Browse files
committed
0.1.6
* json-schema-core to 1.2.13 * json-schema-validator to 2.2.13 * jackson-databind to 2.10.2 (CVE in 2.9.9) * testng to 7.1.0
1 parent b682517 commit 80923ab

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.1.6-SNAPSHOT";
23+
version = "0.1.6";
2424
sourceCompatibility = JavaVersion.VERSION_1_7;
2525
targetCompatibility = JavaVersion.VERSION_1_7; // defaults to sourceCompatibility
2626

@@ -33,18 +33,18 @@ project.ext {
3333
*/
3434
dependencies {
3535
compile(group: "com.github.java-json-tools", name: "json-schema-core",
36-
version: "1.2.12");
36+
version: "1.2.13");
3737
compile(group: "com.github.java-json-tools", name: "json-schema-validator",
38-
version: "2.2.12");
38+
version: "2.2.13");
3939
compile(group: "org.apache.avro", name: "avro", version: "1.9.1") {
4040
exclude(group: "org.slf4j", module: "slf4j-api");
4141
exclude(group: "org.apache.commons", module: "commons-compress");
4242
exclude(group: "com.thoughtworks.paranamer", module: "paranamer");
4343
exclude(group: "org.xerial.snappy", module: "snappy-java");
4444
}
4545
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") {
4848
exclude(group: "junit", module: "junit");
4949
exclude(group: "org.beanshell", module: "bsh");
5050
exclude(group: "org.yaml", module: "snakeyaml");
@@ -60,10 +60,10 @@ javadoc.options {
6060
}
6161
links("https://docs.oracle.com/javase/7/docs/api/");
6262
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/");
6767
links("https://java-json-tools.github.io/msg-simple/");
6868
links("https://java-json-tools.github.io/json-schema-core/1.2.x/");
6969
links("https://java-json-tools.github.io/json-schema-validator/2.2.x/");

0 commit comments

Comments
 (0)