[
https://issues.apache.org/jira/browse/MSHARED-924?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Herve Boutemy updated MSHARED-924:
----------------------------------
Description:
{code:xml}
<relocation>
<pattern>org.codehaus.plexus.xml</pattern>
<shadedPattern>org.apache.maven.reporting.exec.xml</shadedPattern>
</relocation>{code}
should have been
{code:xml}
<pattern>org.codehaus.plexus.xml.Xpp3DomUtils</pattern>
<shadedPattern>org.apache.maven.reporting.exec.xml.Xpp3DomUtils</shadedPattern>
{code}
with failed relocation, Xpp3DomUtils class remains in
org.codehaus.plexus.util.xml package, risking conflicts with class from
dependencies, depending on order: even if initial tests in maven-site-plugin
didn't show any problem, let's remove the risk and fix the relocation
was:
{code:xml}
<relocation>
<pattern>org.codehaus.plexus.xml</pattern>
<shadedPattern>org.apache.maven.reporting.exec.xml</shadedPattern>
</relocation>{code}
should have been
{code:xml}<pattern>org.codehaus.plexus.util.xml</pattern>{code}
with failed relocation, Xpp3DomUtils class remains in
org.codehaus.plexus.util.xml package, risking conflicts with class from
dependencies, depending on order: even if initial tests in maven-site-plugin
didn't show any problem, let's remove the risk and fix the relocation
> fix Xpp3DomUtils shading relocation
> -----------------------------------
>
> Key: MSHARED-924
> URL: https://issues.apache.org/jira/browse/MSHARED-924
> Project: Maven Shared Components
> Issue Type: Bug
> Components: maven-reporting-exec
> Affects Versions: maven-reporting-exec-1.5
> Reporter: Herve Boutemy
> Assignee: Herve Boutemy
> Priority: Major
> Fix For: maven-reporting-exec-1.5.1
>
>
> {code:xml}
> <relocation>
> <pattern>org.codehaus.plexus.xml</pattern>
>
> <shadedPattern>org.apache.maven.reporting.exec.xml</shadedPattern>
> </relocation>{code}
> should have been
> {code:xml}
> <pattern>org.codehaus.plexus.xml.Xpp3DomUtils</pattern>
>
> <shadedPattern>org.apache.maven.reporting.exec.xml.Xpp3DomUtils</shadedPattern>
> {code}
> with failed relocation, Xpp3DomUtils class remains in
> org.codehaus.plexus.util.xml package, risking conflicts with class from
> dependencies, depending on order: even if initial tests in maven-site-plugin
> didn't show any problem, let's remove the risk and fix the relocation
--
This message was sent by Atlassian Jira
(v8.3.4#803005)