From 009adfef9c4e82e46cb4a4d2a654ed3365bfbd7f Mon Sep 17 00:00:00 2001 From: zbuster05 <41530680+zbuster05@users.noreply.github.com> Date: Sun, 23 Jan 2022 10:57:43 -0800 Subject: [PATCH 1/2] Fixed examples relative link in README. On the message pack mirror of the readme, since this is relatively linked, it attempts to route to the location https://msgpack.org/msgpack/msgpack-java/blob/develop/msgpack-core/src/test/java/org/msgpack/core/example/MessagePackExample.java which subsequently returns a 404. Statically linking the domain should fix this issue and look a lot more professional. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c5af97cd..d401a76b 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ dependencies { } ``` -- [Usage examples](msgpack-core/src/test/java/org/msgpack/core/example/MessagePackExample.java) +- [Usage examples](https://github.com/msgpack/msgpack-java/blob/develop/msgpack-core/src/test/java/org/msgpack/core/example/MessagePackExample.java) ### Integration with Jackson ObjectMapper (jackson-databind) From 96e7f24f9e742c94f399b5ec21c4b8a8978da114 Mon Sep 17 00:00:00 2001 From: zbuster05 <41530680+zbuster05@users.noreply.github.com> Date: Tue, 25 Jan 2022 09:03:54 -0800 Subject: [PATCH 2/2] Fixed other instances --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d401a76b..4035fdc4 100644 --- a/README.md +++ b/README.md @@ -45,9 +45,9 @@ dependencies { ### Integration with Jackson ObjectMapper (jackson-databind) msgpack-java supports serialization and deserialization of Java objects through [jackson-databind](https://github.com/FasterXML/jackson-databind). -For details, see [msgpack-jackson/README.md](msgpack-jackson/README.md). The template-based serialization mechanism used in v06 is deprecated. +For details, see [msgpack-jackson/README.md](https://github.com/msgpack/msgpack-java/blob/develop/msgpack-jackson/README.md). The template-based serialization mechanism used in v06 is deprecated. -- [Release Notes](RELEASE_NOTES.md) +- [Release Notes](https://github.com/msgpack/msgpack-java/blob/develop/RELEASE_NOTES.md) ## For MessagePack Developers [![Travis CI](https://travis-ci.org/msgpack/msgpack-java.svg?branch=v07-develop)](https://travis-ci.org/msgpack/msgpack-java)