You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
With Spring Boot 3 javax.* is replaced with jakarta.* resulting in unit test failure due to dependency conflict in project and sdk.
Error: NoClassDefFound javax/xml/bind/annotation/XmlElement
It's not an issue of the SDK. We don't use the XmlElement annotation.
The incompatibility comes from Jackson in combination with Spring Boot 3. You will have to find some working combination by excluding and/or explicitly referencing the needed dependencies.
Describe the bug
With Spring Boot 3
javax.*
is replaced withjakarta.*
resulting in unit test failure due to dependency conflict in project and sdk.Error:
NoClassDefFound javax/xml/bind/annotation/XmlElement
To Reproduce
Run the below code in project:
Expected behavior
SDK should use the latest
jakarta
dependencies.Screenshots/Code snippet
Error:
NoClassDefFound javax/xml/bind/annotation/XmlElement
Stack information (please complete the following information):
Additional context
NA
The text was updated successfully, but these errors were encountered: