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
displayName: Do not use `java.xml.ws` module in WebSphere Liberty
120
+
displayName: Do not package `java.xml.ws` module in WebSphere Liberty applications
121
121
description:
122
122
The `java.xml.ws` module was removed in Java11. Websphere Liberty provides its own implementation of the module, which can be used by specifying the `jaxws-2.2` feature in the server.xml file.
123
-
This recipe removes the `javax.xml.ws` module from the application's build dependency in favor of the Websphere Liberty implementation to avoid class loading issues.
123
+
This recipe updates the `javax.xml.ws` dependency to use the `provided` scope to avoid class loading issues.
displayName: Do not use `java.xml.bind` and `java.activation` modules in WebSphere Liberty
134
+
displayName: Do not package `java.xml.bind` and `java.activation` modules in WebSphere Liberty applications
134
135
description:
135
136
The `java.xml.bind` and `java.activation` modules were removed in Java11.
136
137
Websphere Liberty provides its own implementation of the modules, which can be used by specifying the `jaxb-2.2` feature in the server.xml file.
137
-
This recipe removes the `javax.xml.bind` and `javax.activation` modules from the application's build dependency in favor of the Websphere Liberty implementation to avoid class loading issues.
138
+
This recipe updates the `javax.xml.bind` and `javax.activation` dependencies to use the `provided` scope to avoid class loading issues.
0 commit comments