Skip to content

Commit 7c40c00

Browse files
committed
Prepare 0.8.6.
* Update versions of java-json-tools deps to SNAPSHOTs. * Update jsonschema2pojo-core to 1.0.2 * Update databind javadoc links to 2.11 * Update travis CI links
1 parent 199a2af commit 7c40c00

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Versions before 0.8.3 are available at `groupId` `com.github.fge`.
4040
[LGPLv3]: http://www.gnu.org/licenses/lgpl-3.0.html
4141
[ASL 2.0 badge]: https://img.shields.io/:license-Apache%202.0-blue.svg
4242
[ASL 2.0]: http://www.apache.org/licenses/LICENSE-2.0.html
43-
[Travis Badge]: https://api.travis-ci.org/java-json-tools/json-schema-processor-examples.svg?branch=master
44-
[Travis]: https://travis-ci.org/java-json-tools/json-schema-processor-examples
43+
[Travis Badge]: https://travis-ci.com/java-json-tools/json-schema-processor-examples.svg?branch=master
44+
[Travis]: https://travis-ci.com/java-json-tools/json-schema-processor-examples
4545
[Maven Central badge]: https://img.shields.io/maven-central/v/com.github.java-json-tools/json-schema-processor-examples.svg
4646
[Maven]: https://search.maven.org/artifact/com.github.java-json-tools/json-schema-processor-examples

project.gradle

+8-8
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.8.5";
23+
version = "0.8.6-SNAPSHOT";
2424
sourceCompatibility = JavaVersion.VERSION_1_7;
2525
targetCompatibility = JavaVersion.VERSION_1_7; // defaults to sourceCompatibility
2626

@@ -33,23 +33,23 @@ project.ext {
3333
*/
3434
dependencies {
3535
compile(group: "com.github.java-json-tools", name: "json-schema-validator",
36-
version: "2.2.13");
36+
version: "2.2.14-SNAPSHOT");
3737
compile(group: "com.github.reinert", name: "jjschema", version: "1.16") {
3838
exclude(group: "com.google.guava", module: "guava");
3939
exclude(group: "com.fasterxml.jackson.core", module: "jackson-annotations");
4040
exclude(group: "com.fasterxml.jackson.core", module: "jackson-core");
4141
exclude(group: "com.fasterxml.jackson.core", module: "jackson-databind");
4242
}
4343
compile(group: "org.jsonschema2pojo",
44-
name: "jsonschema2pojo-core", version: "1.0.1") {
44+
name: "jsonschema2pojo-core", version: "1.0.2") {
4545
exclude(group: "com.fasterxml.jackson.core", module: "jackson-annotations");
4646
exclude(group: "com.fasterxml.jackson.core", module: "jackson-core");
4747
exclude(group: "com.fasterxml.jackson.core", module: "jackson-databind");
4848
}
4949
compile(group: "com.github.java-json-tools", name: "json-schema-avro",
50-
version: "0.1.7");
50+
version: "0.1.8-SNAPSHOT");
5151
compile(group: "com.github.java-json-tools", name: "json-patch",
52-
version: "1.12");
52+
version: "1.13-SNAPSHOT");
5353
testCompile(group: "org.testng", name: "testng", version: "7.1.0") {
5454
exclude(group: "junit", module: "junit");
5555
exclude(group: "org.beanshell", module: "bsh");
@@ -66,9 +66,9 @@ javadoc.options {
6666
}
6767
links("https://docs.oracle.com/javase/7/docs/api/");
6868
links("https://www.javadoc.io/doc/com.google.code.findbugs/jsr305/3.0.2/");
69-
links("https://fasterxml.github.com/jackson-databind/javadoc/2.10/");
70-
links("https://fasterxml.github.com/jackson-core/javadoc/2.10/");
71-
links("https://fasterxml.github.com/jackson-annotations/javadoc/2.10/");
69+
links("https://fasterxml.github.com/jackson-databind/javadoc/2.11/");
70+
links("https://fasterxml.github.com/jackson-core/javadoc/2.11/");
71+
links("https://fasterxml.github.com/jackson-annotations/javadoc/2.11/");
7272
links("https://www.javadoc.io/doc/com.google.guava/guava/28.2-android/");
7373
links("https://java-json-tools.github.io/msg-simple/");
7474
links("https://java-json-tools.github.io/json-schema-core/1.2.x/");

0 commit comments

Comments
 (0)