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
@@ -68,7 +67,7 @@ You can do this by adding this in your `pom.xml`:
68
67
<dependency>
69
68
<groupId>com.fasterxml.woodstox</groupId>
70
69
<artifactId>woodstox-core</artifactId>
71
-
<version>6.2.5</version>
70
+
<version>6.5.0</version>
72
71
</dependency>
73
72
```
74
73
@@ -116,6 +115,10 @@ XmlMapper mapper = new XmlMapper(xf); // there are other overloads too
116
115
For configurable properties, you may want to check out
117
116
[Configuring Woodstox XML parser](https://medium.com/@cowtowncoder/configuring-woodstox-xml-parser-woodstox-specific-properties-1ce5030a5173)
118
117
118
+
As the well as the Woodstox properties specified above, you can also call [WstxInputFactory#getConfig()](https://javadoc.io/doc/com.fasterxml.woodstox/woodstox-core/latest/com/ctc/wstx/stax/WstxInputFactory.html#getConfig--)
119
+
and modify the [ReaderConfig](https://javadoc.io/doc/com.fasterxml.woodstox/woodstox-core/latest/com/ctc/wstx/api/ReaderConfig.html).
120
+
One useful setting is the [maxElementDepth](https://javadoc.io/static/com.fasterxml.woodstox/woodstox-core/6.5.0/com/ctc/wstx/api/ReaderConfig.html#setMaxElementDepth-int-).
121
+
119
122
## Android quirks
120
123
121
124
Usage of this library on Android is currently not supported. This is due to the fact that the Stax API is unavailable on the Android platform, and attempts to declare an explicit dependency on the Stax API library will result in errors at build time (since the inclusion of the `javax.*` namespace in apps is restricted).
0 commit comments