Skip to content

Commit

Permalink
1.12
Browse files Browse the repository at this point in the history
* guava to 28.2-android
* jackson-databind to 2.10.2 (CVE in 2.9.9)
* jackson-coreutils to 1.12
* testng to 7.1.0
  • Loading branch information
Capstan committed Jan 8, 2020
1 parent b4f9ccd commit e346c91
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions project.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,22 +21,25 @@
* Project-specific settings. Unfortunately we cannot put the name in there!
*/
group = "com.github.java-json-tools";
version = "1.12-SNAPSHOT";
version = "1.12";
sourceCompatibility = JavaVersion.VERSION_1_7;
targetCompatibility = JavaVersion.VERSION_1_7; // defaults to sourceCompatibility
project.ext.description = "JSON Patch (RFC 6902) and JSON Merge Patch (RFC 7386) implementation in Java";

project.ext {
description = "JSON Patch (RFC 6902) and JSON Merge Patch (RFC 7386) implementation in Java";
}

/*
* List of dependencies
*/
dependencies {
provided(group: "com.google.code.findbugs", name: "jsr305", version: "3.0.2");
compile(group: "com.google.guava", name: "guava", version: "28.1-android");
compile(group: "com.fasterxml.jackson.core", name: "jackson-databind", version: "2.9.9");
compile(group: "com.google.guava", name: "guava", version: "28.2-android");
compile(group: "com.fasterxml.jackson.core", name: "jackson-databind", version: "2.10.2");
compile(group: "com.github.java-json-tools", name: "msg-simple", version: "1.2");

compile(group: "com.github.java-json-tools", name: "jackson-coreutils", version: "1.11");
testCompile(group: "org.testng", name: "testng", version: "6.8.7") {
compile(group: "com.github.java-json-tools", name: "jackson-coreutils", version: "1.12");
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 @@ -54,10 +57,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/jackson-coreutils/");
}

0 comments on commit e346c91

Please sign in to comment.