Replace deprecated Base64.decode() with Base64.getDecoder().decode()#340
Replace deprecated Base64.decode() with Base64.getDecoder().decode()#340dodgex wants to merge 1 commit intospring-projects:mainfrom
Conversation
Signed-off-by: Kay J. <dodgex@users.noreply.github.com>
|
Thanks for suggestion. Even today while im upgrading to spring 7.0.2 the last spring-security-kerberos-core.version was 2.2.0 which is not supported in spring 7. ended up in java.lang.ClassNotFoundException: org.springframework.security.crypto.codec.Base64 |
Seeing how "active" this project is maintained, I am afraid that a fixed releases will take some time. But you can add the dummy |
|
Fore everyone stumbling on this: Switch your dependencies on the kerberos modules to groupId |
Replace usage of
org.springframework.security.crypto.codec.Base64that was removed in Spring Security 7 withjava.util.Base64see #338