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
(or whatever version is most up-to-date at the moment)
63
71
64
72
Also: you usually also want to make sure that XML library in use is [Woodstox](https://github.com/FasterXML/woodstox) since it is not only faster than Stax implementation JDK provides, but also works better and avoids some known issues like adding unnecessary namespace prefixes.
65
73
You can do this by adding this in your `pom.xml`:
66
74
75
+
Maven:
67
76
```xml
68
77
<dependency>
69
78
<groupId>com.fasterxml.woodstox</groupId>
@@ -72,6 +81,13 @@ You can do this by adding this in your `pom.xml`:
0 commit comments