Skip to content

Commit

Permalink
2.2.14
Browse files Browse the repository at this point in the history
  • Loading branch information
Capstan committed May 27, 2020
1 parent 2b38d8b commit 3a56aa9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)).
Expand All @@ -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");
}
```

Expand All @@ -67,7 +67,7 @@ Maven:
<dependency>
<groupId>com.github.java-json-tools</groupId>
<artifactId>json-schema-validator</artifactId>
<version>2.2.12</version>
<version>2.2.14</version>
</dependency>
```

Expand Down Expand Up @@ -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
6 changes: 3 additions & 3 deletions project.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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");
Expand Down

0 comments on commit 3a56aa9

Please sign in to comment.