From 3a56aa9529aff89df5f78b0bc6faa2770cedf7c9 Mon Sep 17 00:00:00 2001 From: capstan Date: Wed, 27 May 2020 18:08:49 +0200 Subject: [PATCH] 2.2.14 --- README.md | 10 +++++----- project.gradle | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 2a0d02e16..b02eaffc7 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ run by yourself. ## Versions -* current stable version: **2.2.12** +* current stable version: **2.2.14** ([ChangeLog](https://github.com/java-json-tools/json-schema-validator/wiki/ChangeLog_22x), [Javadoc](http://java-json-tools.github.io/json-schema-validator/2.2.x/index.html), [code samples](http://java-json-tools.github.io/json-schema-validator/2.2.x/index.html?com/github/fge/jsonschema/examples/package-summary.html)). @@ -57,7 +57,7 @@ Gradle: ```groovy dependencies { - compile(group: "com.github.java-json-tools", name: "json-schema-validator", version: "2.2.12"); + compile(group: "com.github.java-json-tools", name: "json-schema-validator", version: "2.2.14"); } ``` @@ -67,7 +67,7 @@ Maven: com.github.java-json-tools json-schema-validator - 2.2.12 + 2.2.14 ``` @@ -109,5 +109,5 @@ details. [LGPLv3]: http://www.gnu.org/licenses/lgpl-3.0.html [ASL 2.0 badge]: https://img.shields.io/:license-Apache%202.0-blue.svg [ASL 2.0]: http://www.apache.org/licenses/LICENSE-2.0.html -[Travis Badge]: https://api.travis-ci.org/java-json-tools/json-schema-validator.svg?branch=master -[Travis]: https://travis-ci.org/java-json-tools/json-schema-validator +[Travis Badge]: https://travis-ci.com/java-json-tools/json-schema-validator.svg?branch=master +[Travis]: https://travis-ci.com/java-json-tools/json-schema-validator diff --git a/project.gradle b/project.gradle index 6830ebbb1..3d2665129 100644 --- a/project.gradle +++ b/project.gradle @@ -21,7 +21,7 @@ * Project-specific settings. Unfortunately we cannot put the name in there! */ group = "com.github.java-json-tools"; -version = "2.2.14-SNAPSHOT"; +version = "2.2.14"; sourceCompatibility = JavaVersion.VERSION_1_7; targetCompatibility = JavaVersion.VERSION_1_7; // defaults to sourceCompatibility @@ -34,8 +34,8 @@ project.ext { */ dependencies { compile(group: "com.google.guava", name: "guava", version: "28.2-android"); - compile(group: "com.github.java-json-tools", name: "jackson-coreutils-equivalence", version: "1.0-SNAPSHOT"); - compile(group: "com.github.java-json-tools", name: "json-schema-core", version: "1.2.14-SNAPSHOT"); + compile(group: "com.github.java-json-tools", name: "jackson-coreutils-equivalence", version: "1.0"); + compile(group: "com.github.java-json-tools", name: "json-schema-core", version: "1.2.14"); // FIXME: 1.6.4 exists, but has different license (EDL 1.0, EPL 2.0). Can update? compile(group: "com.sun.mail", name: "mailapi", version: "1.6.2"); compile(group: "joda-time", name: "joda-time", version: "2.10.5");