Skip to content

Commit

Permalink
0.1.6
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
Capstan committed Jan 8, 2020
1 parent b682517 commit 80923ab
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions project.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* Project-specific settings. Unfortunately we cannot put the name in there!
*/
group = "com.github.java-json-tools";
version = "0.1.6-SNAPSHOT";
version = "0.1.6";
sourceCompatibility = JavaVersion.VERSION_1_7;
targetCompatibility = JavaVersion.VERSION_1_7; // defaults to sourceCompatibility

Expand All @@ -33,18 +33,18 @@ project.ext {
*/
dependencies {
compile(group: "com.github.java-json-tools", name: "json-schema-core",
version: "1.2.12");
version: "1.2.13");
compile(group: "com.github.java-json-tools", name: "json-schema-validator",
version: "2.2.12");
version: "2.2.13");
compile(group: "org.apache.avro", name: "avro", version: "1.9.1") {
exclude(group: "org.slf4j", module: "slf4j-api");
exclude(group: "org.apache.commons", module: "commons-compress");
exclude(group: "com.thoughtworks.paranamer", module: "paranamer");
exclude(group: "org.xerial.snappy", module: "snappy-java");
}
compile(group: "com.fasterxml.jackson.core", name: "jackson-databind",
version: "2.9.9");
testCompile(group: "org.testng", name: "testng", version: "6.8.7") {
version: "2.10.2");
testCompile(group: "org.testng", name: "testng", version: "7.1.0") {
exclude(group: "junit", module: "junit");
exclude(group: "org.beanshell", module: "bsh");
exclude(group: "org.yaml", module: "snakeyaml");
Expand All @@ -60,10 +60,10 @@ javadoc.options {
}
links("https://docs.oracle.com/javase/7/docs/api/");
links("https://www.javadoc.io/doc/com.google.code.findbugs/jsr305/3.0.2/");
links("https://fasterxml.github.com/jackson-databind/javadoc/2.9/");
links("https://fasterxml.github.com/jackson-core/javadoc/2.9/");
links("https://fasterxml.github.com/jackson-annotations/javadoc/2.9/");
links("https://www.javadoc.io/doc/com.google.guava/guava/28.1-android/");
links("https://fasterxml.github.com/jackson-databind/javadoc/2.10/");
links("https://fasterxml.github.com/jackson-core/javadoc/2.10/");
links("https://fasterxml.github.com/jackson-annotations/javadoc/2.10/");
links("https://www.javadoc.io/doc/com.google.guava/guava/28.2-android/");
links("https://java-json-tools.github.io/msg-simple/");
links("https://java-json-tools.github.io/json-schema-core/1.2.x/");
links("https://java-json-tools.github.io/json-schema-validator/2.2.x/");
Expand Down

0 comments on commit 80923ab

Please # to comment.