Skip to content

Commit

Permalink
1.2.14
Browse files Browse the repository at this point in the history
  • Loading branch information
Capstan committed May 27, 2020
1 parent 8086d86 commit 5d443f0
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 @@ -36,7 +36,7 @@ gratefully accepted.

## Versions

The current stable verson is **1.2.12**
The current stable verson is **1.2.14**
([ChangeLog](https://github.com/java-json-tools/json-schema-core/wiki/ChangeLog_12x),
[Javadoc](http://java-json-tools.github.io/json-schema-core/1.2.x/index.html)).

Expand All @@ -53,7 +53,7 @@ For gradle, use:

```
dependencies {
compile(group: "com.github.java-json-tools", name: "json-schema-core", version: "1.2.12");
compile(group: "com.github.java-json-tools", name: "json-schema-core", version: "1.2.14");
}
```

Expand All @@ -63,7 +63,7 @@ For maven:
<dependency>
<groupId>com.github.java-json-tools</groupId>
<artifactId>json-schema-core</artifactId>
<version>1.2.12</version>
<version>1.2.14</version>
</dependency>
```

Expand All @@ -82,5 +82,5 @@ The versioning scheme is defined by the **middle digit** of the version number:
[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-core.svg?branch=master
[Travis]: https://travis-ci.org/java-json-tools/json-schema-core
[Travis Badge]: https://travis-ci.com/java-json-tools/json-schema-core.svg?branch=master
[Travis]: https://travis-ci.com/java-json-tools/json-schema-core
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 = "1.2.14-SNAPSHOT";
version = "1.2.14";
sourceCompatibility = JavaVersion.VERSION_1_7;
targetCompatibility = JavaVersion.VERSION_1_7; // defaults to sourceCompatibility

Expand All @@ -35,8 +35,8 @@ project.ext {
dependencies {
compile(group: "com.fasterxml.jackson.core", name: "jackson-databind", version: "2.11.0");
compile(group: "com.google.guava", name: "guava", version: "28.2-android");
compile(group: "com.github.java-json-tools", name: "jackson-coreutils", version: "2.0-SNAPSHOT");
compile(group: "com.github.java-json-tools", name: "jackson-coreutils-equivalence", version: "1.0-SNAPSHOT");
compile(group: "com.github.java-json-tools", name: "jackson-coreutils", version: "2.0");
compile(group: "com.github.java-json-tools", name: "jackson-coreutils-equivalence", version: "1.0");
compile(group: "com.github.java-json-tools", name: "uri-template", version: "0.10");
// FIXME: no javadoc
// FIXME: update beyond 1.7.7.x once we're Java 8 or better.
Expand Down

0 comments on commit 5d443f0

Please sign in to comment.