diff --git a/CHANGELOG.md b/CHANGELOG.md index c7a33cc1..188b2c58 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 32d00485..7fa465b8 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