This is an automated email from the ASF dual-hosted git repository. stoty pushed a commit to branch 5.1 in repository https://gitbox.apache.org/repos/asf/phoenix.git
The following commit(s) were added to refs/heads/5.1 by this push: new 6692a37569 PHOENIX-6903 Shade or exclude javax.xml.bind:jaxb-api from the embedded client 6692a37569 is described below commit 6692a3756970d4a26bc43ae88c91b3aaa9e3dbef Author: Istvan Toth <st...@apache.org> AuthorDate: Tue Mar 14 06:59:27 2023 +0100 PHOENIX-6903 Shade or exclude javax.xml.bind:jaxb-api from the embedded client --- phoenix-client-parent/pom.xml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/phoenix-client-parent/pom.xml b/phoenix-client-parent/pom.xml index 04200d5069..f0cda6f87e 100644 --- a/phoenix-client-parent/pom.xml +++ b/phoenix-client-parent/pom.xml @@ -224,6 +224,14 @@ <pattern>javax/validation/</pattern> <shadedPattern>${shaded.package}.javax.validation.</shadedPattern> </relocation> + <relocation> + <pattern>javax/xml/bind/</pattern> + <shadedPattern>${shaded.package}.javax.xml.bind.</shadedPattern> + </relocation> + <relocation> + <pattern>javax/activation/</pattern> + <shadedPattern>${shaded.package}.javax.activation.</shadedPattern> + </relocation> <relocation> <pattern>net/</pattern> <shadedPattern>${shaded.package}.net.</shadedPattern>