Skip to content

Commit 3a56aa9

Browse files
committed
2.2.14
1 parent 2b38d8b commit 3a56aa9

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ run by yourself.
3838

3939
## Versions
4040

41-
* current stable version: **2.2.12**
41+
* current stable version: **2.2.14**
4242
([ChangeLog](https://github.com/java-json-tools/json-schema-validator/wiki/ChangeLog_22x),
4343
[Javadoc](http://java-json-tools.github.io/json-schema-validator/2.2.x/index.html), [code
4444
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:
5757

5858
```groovy
5959
dependencies {
60-
compile(group: "com.github.java-json-tools", name: "json-schema-validator", version: "2.2.12");
60+
compile(group: "com.github.java-json-tools", name: "json-schema-validator", version: "2.2.14");
6161
}
6262
```
6363

@@ -67,7 +67,7 @@ Maven:
6767
<dependency>
6868
<groupId>com.github.java-json-tools</groupId>
6969
<artifactId>json-schema-validator</artifactId>
70-
<version>2.2.12</version>
70+
<version>2.2.14</version>
7171
</dependency>
7272
```
7373

@@ -109,5 +109,5 @@ details.
109109
[LGPLv3]: http://www.gnu.org/licenses/lgpl-3.0.html
110110
[ASL 2.0 badge]: https://img.shields.io/:license-Apache%202.0-blue.svg
111111
[ASL 2.0]: http://www.apache.org/licenses/LICENSE-2.0.html
112-
[Travis Badge]: https://api.travis-ci.org/java-json-tools/json-schema-validator.svg?branch=master
113-
[Travis]: https://travis-ci.org/java-json-tools/json-schema-validator
112+
[Travis Badge]: https://travis-ci.com/java-json-tools/json-schema-validator.svg?branch=master
113+
[Travis]: https://travis-ci.com/java-json-tools/json-schema-validator

project.gradle

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

@@ -34,8 +34,8 @@ project.ext {
3434
*/
3535
dependencies {
3636
compile(group: "com.google.guava", name: "guava", version: "28.2-android");
37-
compile(group: "com.github.java-json-tools", name: "jackson-coreutils-equivalence", version: "1.0-SNAPSHOT");
38-
compile(group: "com.github.java-json-tools", name: "json-schema-core", version: "1.2.14-SNAPSHOT");
37+
compile(group: "com.github.java-json-tools", name: "jackson-coreutils-equivalence", version: "1.0");
38+
compile(group: "com.github.java-json-tools", name: "json-schema-core", version: "1.2.14");
3939
// FIXME: 1.6.4 exists, but has different license (EDL 1.0, EPL 2.0). Can update?
4040
compile(group: "com.sun.mail", name: "mailapi", version: "1.6.2");
4141
compile(group: "joda-time", name: "joda-time", version: "2.10.5");

0 commit comments

Comments
 (0)