We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In JDK 11, javax.xml.bind is dropped and so Spring LDAP needs to find an alternative to DatatypeConverter in order to be runnable in JDK 11+.
javax.xml.bind
DatatypeConverter
Because Spring LDAP 2.3.x compiles to JDK 6, it's not as simple as changing to use java.util.Base64. Instead, the code should:
java.util.Base64
Since this is passive, it can be introduced in a point release.
The text was updated successfully, but these errors were encountered:
9516edd
Reactivate LdifReader tests
e8e3f5d
These tests were ignored in 5dc17b1 due to a runtime issue with spring-ldap. This issue has been fixed in spring-projects/spring-ldap#590.
jzheaux
No branches or pull requests
In JDK 11,
javax.xml.bind
is dropped and so Spring LDAP needs to find an alternative toDatatypeConverter
in order to be runnable in JDK 11+.Because Spring LDAP 2.3.x compiles to JDK 6, it's not as simple as changing to use
java.util.Base64
. Instead, the code should:java.util.Base64
class is present. If so, use itDatatypeConverter
Since this is passive, it can be introduced in a point release.
The text was updated successfully, but these errors were encountered: