Fixes issue with JWT logging
What's Changed
- [Fixes #17] Support JDK17 by @massenz in #18
- [Fixes #19] Implements a KeypairReader bean by @massenz in #20
- [Fixes #22] Remove all JWT logs by @massenz in #23
Full Changelog: 0.6.6...0.7.1
How to use
Import in your build.gradle
:
ext {
// Use this version for projects that cannot use JDK 17
jwtOpaVersion = '0.7.1-jdk15'
// This release is compatible with JDK 17
jwtOpaVersion = '0.7.1'
}
dependencies {
// JWT-OPA Integration, see: https://github.com/massenz/jwt-opa
implementation "com.alertavert:jwt-opa:${jwtOpaVersion}"
}