Skip to content

Commit f62abeb

Browse files
committed
Prepare 0.1.8
* Update versions of json-schema-core and json-schema-validator. * Bump jackson-databind to 2.11.0 * Bump avro to 1.9.2 * Update travis CI links.
1 parent b9b5e23 commit f62abeb

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ Versions before 0.1.5 are available at `groupId` `com.github.fge`.
8181
[LGPLv3]: http://www.gnu.org/licenses/lgpl-3.0.html
8282
[ASL 2.0 badge]: https://img.shields.io/:license-Apache%202.0-blue.svg
8383
[ASL 2.0]: http://www.apache.org/licenses/LICENSE-2.0.html
84-
[Travis Badge]: https://api.travis-ci.org/java-json-tools/json-schema-avro.svg?branch=master
85-
[Travis]: https://travis-ci.org/java-json-tools/json-schema-avro
84+
[Travis Badge]: https://travis-ci.com/java-json-tools/json-schema-avro.svg?branch=master
85+
[Travis]: https://travis-ci.com/java-json-tools/json-schema-avro
8686
[Maven Central badge]: https://img.shields.io/maven-central/v/com.github.java-json-tools/json-schema-avro.svg
8787
[Maven]: https://search.maven.org/artifact/com.github.java-json-tools/json-schema-avro

project.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* Project-specific settings. Unfortunately we cannot put the name in there!
2121
*/
2222
group = "com.github.java-json-tools";
23-
version = "0.1.7";
23+
version = "0.1.8-SNAPSHOT";
2424
sourceCompatibility = JavaVersion.VERSION_1_7;
2525
targetCompatibility = JavaVersion.VERSION_1_7; // defaults to sourceCompatibility
2626

@@ -33,18 +33,18 @@ project.ext {
3333
*/
3434
dependencies {
3535
compile(group: "com.github.java-json-tools", name: "json-schema-core",
36-
version: "1.2.13");
36+
version: "1.2.14-SNAPSHOT");
3737
compile(group: "com.github.java-json-tools", name: "json-schema-validator",
38-
version: "2.2.13");
39-
compile(group: "org.apache.avro", name: "avro", version: "1.9.1") {
38+
version: "2.2.14-SNAPSHOT");
39+
compile(group: "org.apache.avro", name: "avro", version: "1.9.2") {
4040
exclude(group: "org.slf4j", module: "slf4j-api");
4141
exclude(group: "org.apache.commons", module: "commons-compress");
4242
exclude(group: "com.thoughtworks.paranamer", module: "paranamer");
4343
exclude(group: "org.xerial.snappy", module: "snappy-java");
4444
exclude(group: "com.fasterxml.jackson.core", module: "jackson-core");
4545
}
4646
compile(group: "com.fasterxml.jackson.core", name: "jackson-databind",
47-
version: "2.10.2");
47+
version: "2.11.0");
4848
testCompile(group: "org.testng", name: "testng", version: "7.1.0") {
4949
exclude(group: "junit", module: "junit");
5050
exclude(group: "org.beanshell", module: "bsh");
@@ -62,8 +62,8 @@ javadoc.options {
6262
links("https://docs.oracle.com/javase/7/docs/api/");
6363
links("https://www.javadoc.io/doc/com.google.code.findbugs/jsr305/3.0.2/");
6464
links("https://fasterxml.github.com/jackson-databind/javadoc/2.10/");
65-
links("https://fasterxml.github.com/jackson-core/javadoc/2.10/");
66-
links("https://fasterxml.github.com/jackson-annotations/javadoc/2.10/");
65+
links("https://fasterxml.github.com/jackson-core/javadoc/2.11/");
66+
links("https://fasterxml.github.com/jackson-annotations/javadoc/2.11/");
6767
links("https://www.javadoc.io/doc/com.google.guava/guava/28.2-android/");
6868
links("https://java-json-tools.github.io/msg-simple/");
6969
links("https://java-json-tools.github.io/json-schema-core/1.2.x/");

0 commit comments

Comments
 (0)