File tree Expand file tree Collapse file tree 2 files changed +11
-5
lines changed
tools/jackson/dataformat/xml Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 11// Jackson 3.x module-info for jackson-dataformat-xml Main artifact
22module tools .jackson .dataformat .xml
33{
4- requires java .xml ;
5- requires org .codehaus .stax2 ;
4+ requires transitive java .xml ;
5+ requires transitive org .codehaus .stax2 ; // stax2-api
66
7- requires com .fasterxml .jackson .annotation ;
8- requires tools .jackson .core ;
9- requires tools .jackson .databind ;
7+ requires transitive com .fasterxml .jackson .annotation ;
8+ requires transitive tools .jackson .core ;
9+ requires transitive tools .jackson .databind ;
1010
1111 exports tools .jackson .dataformat .xml ;
1212 exports tools .jackson .dataformat .xml .annotation ;
Original file line number Diff line number Diff line change @@ -119,6 +119,12 @@ protected MapperBuilderState _saveState() {
119119 return new XmlBuilderState (this );
120120 }
121121
122+ /**
123+ * NOTE: despite being public not exposed as part of API
124+ *
125+ * @param state State to restore builder from
126+ */
127+ @ SuppressWarnings ("exports" )
122128 public Builder (XmlBuilderState state ) {
123129 super (state );
124130 _defaultUseWrapper = state ._defaultUseWrapper ;
You can’t perform that action at this time.
0 commit comments