Skip to content

Commit 54d6946

Browse files
committed
1.2.13
* jackson-databind to 2.10.2 (CVE in 2.9.9) * jackson-coreutils to 1.12 * testng to 7.1.0 * mockito-core to 2.28.2 * Moved description to project.gradle.
1 parent cabc332 commit 54d6946

File tree

2 files changed

+15
-12
lines changed

2 files changed

+15
-12
lines changed

build.gradle

+1-2
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,6 @@ task pom {
146146
*/
147147

148148
project.ext {
149-
description = "Core processing architecture for json-schema-validator";
150149
scmUrl = sprintf("[email protected]:java-json-tools/%s.git", name);
151150
projectURL = sprintf("https://github.com/java-json-tools/%s", name);
152151
sonatypeStaging = "https://oss.sonatype.org/service/local/staging/deploy/maven2/";
@@ -160,7 +159,7 @@ task checkSigningRequirements {
160159
requiredProperties.each {
161160
if (project.properties[it] == null) {
162161
noDice = true;
163-
System.err.printf("property \"%s\" is not defined!\n", it)
162+
System.err.printf("property \"%s\" is not defined!\n", it);
164163
}
165164
}
166165
if (noDice)

project.gradle

+14-10
Original file line numberDiff line numberDiff line change
@@ -21,28 +21,32 @@
2121
* Project-specific settings. Unfortunately we cannot put the name in there!
2222
*/
2323
group = "com.github.java-json-tools";
24-
version = "1.2.13-SNAPSHOT";
24+
version = "1.2.13";
2525
sourceCompatibility = JavaVersion.VERSION_1_7;
2626
targetCompatibility = JavaVersion.VERSION_1_7; // defaults to sourceCompatibility
2727

28+
project.ext {
29+
description = "Core processing architecture for json-schema-validator";
30+
}
31+
2832
/*
2933
* List of dependencies
3034
*/
3135
dependencies {
32-
compile(group: "com.fasterxml.jackson.core", name: "jackson-databind", version: "2.9.9");
33-
compile(group: "com.google.guava", name: "guava", version: "28.1-android");
34-
compile(group: "com.github.java-json-tools", name: "jackson-coreutils", version: "1.11");
36+
compile(group: "com.fasterxml.jackson.core", name: "jackson-databind", version: "2.10.2");
37+
compile(group: "com.google.guava", name: "guava", version: "28.2-android");
38+
compile(group: "com.github.java-json-tools", name: "jackson-coreutils", version: "1.12");
3539
compile(group: "com.github.java-json-tools", name: "uri-template", version: "0.10");
3640
// FIXME: no javadoc
3741
// FIXME: update beyond 1.7.7.x once we're Java 8 or better.
3842
compile(group: "org.mozilla", name: "rhino", version: "1.7.7.2");
3943
compile(group: "com.google.code.findbugs", name: "jsr305", version: "3.0.2");
40-
testCompile(group: "org.testng", name: "testng", version: "6.10") {
44+
testCompile(group: "org.testng", name: "testng", version: "7.1.0") {
4145
exclude(group: "junit", module: "junit");
4246
exclude(group: "org.beanshell", module: "bsh");
4347
exclude(group: "org.yaml", module: "snakeyaml");
4448
};
45-
testCompile(group: "org.mockito", name: "mockito-core", version: "2.4.2");
49+
testCompile(group: "org.mockito", name: "mockito-core", version: "2.28.2");
4650
// FIXME: update to 3.x once we're off of Java 7.
4751
testCompile(group: "org.assertj", name: "assertj-core", version: "2.9.1");
4852
}
@@ -55,10 +59,10 @@ javadoc {
5559
addStringOption("-release", "7");
5660
}
5761
links("https://docs.oracle.com/javase/7/docs/api/");
58-
links("https://www.javadoc.io/doc/com.google.code.findbugs/jsr305/3.0.1/");
59-
links("https://fasterxml.github.io/jackson-databind/javadoc/2.2.0/");
60-
links("https://fasterxml.github.io/jackson-core/javadoc/2.2.0/");
61-
links("https://www.javadoc.io/doc/com.google.guava/guava/28.1-android/");
62+
links("https://www.javadoc.io/doc/com.google.code.findbugs/jsr305/3.0.2/");
63+
links("https://fasterxml.github.io/jackson-databind/javadoc/2.10/");
64+
links("https://fasterxml.github.io/jackson-core/javadoc/2.10/");
65+
links("https://www.javadoc.io/doc/com.google.guava/guava/28.2-android/");
6266
links("https://java-json-tools.github.io/btf/");
6367
links("https://java-json-tools.github.io/msg-simple/");
6468
links("https://java-json-tools.github.io/jackson-coreutils/");

0 commit comments

Comments
 (0)