From 78cb1707d7fe137bf27911444c3aa686c75ab205 Mon Sep 17 00:00:00 2001 From: Micah Silverman Date: Fri, 17 Jun 2016 14:55:57 -0700 Subject: [PATCH] moved older jackson section back into readme --- CHANGELOG.md | 13 ------------- README.md | 12 ++++++++++++ 2 files changed, 12 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c7a33cc16..188b2c585 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -242,16 +242,3 @@ Jws jws = Jwts.parser().setSigningKey(key).parsePlaintextJws(compact); Jws jws = Jwts.parser().setSigningKey(key).parseClaimsJws(compact); ``` - - -#### Already using an older Jackson dependency? - -JJWT depends on Jackson 2.4.x (or later). If you are already using a Jackson version in your own application less than 2.x, for example 1.9.x, you will likely see [runtime errors](https://github.com/jwtk/jjwt/issues/1). To avoid this, you should change your project build configuration to explicitly point to a 2.x version of Jackson. For example: - -```xml - - com.fasterxml.jackson.core - jackson-databind - 2.4.2 - -``` diff --git a/README.md b/README.md index 32d00485a..7fa465b80 100644 --- a/README.md +++ b/README.md @@ -107,6 +107,18 @@ These feature sets will be implemented in a future release when possible. Commu - [Token Authentication for Java Applications](https://stormpath.com/blog/token-auth-for-java/) - [JJWT Changelog](CHANGELOG.md) + +#### Already using an older Jackson dependency? + +JJWT depends on Jackson 2.4.x (or later). If you are already using a Jackson version in your own application less than 2.x, for example 1.9.x, you will likely see [runtime errors](https://github.com/jwtk/jjwt/issues/1). To avoid this, you should change your project build configuration to explicitly point to a 2.x version of Jackson. For example: + +```xml + + com.fasterxml.jackson.core + jackson-databind + 2.4.2 + +``` ## Author