Skip to content

Commit

Permalink
HBASE-27292. Fix build failure against Hadoop 3.3.4 due to added depe…
Browse files Browse the repository at this point in the history
…ndency on okhttp. (#4687)

Signed-off-by: Duo Zhang <zhangduo@apache.org>
(cherry picked from commit 0061210)
  • Loading branch information
iwasakims authored and Apache9 committed Aug 10, 2022
1 parent e157378 commit c701c12
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion hbase-shaded/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,19 @@
<pattern>net/</pattern>
<shadedPattern>${shaded.prefix}.net.</shadedPattern>
</relocation>

<relocation>
<pattern>org.agrona</pattern>
<shadedPattern>${shaded.prefix}.org.agrona</shadedPattern>
</relocation>
<!-- okhttp -->
<relocation>
<pattern>okhttp3.</pattern>
<shadedPattern>${shaded.prefix}.okhttp3.</shadedPattern>
</relocation>
<relocation>
<pattern>kotlin.</pattern>
<shadedPattern>${shaded.prefix}.kotlin.</shadedPattern>
</relocation>
</relocations>
<transformers>
<!-- Need to filter out some extraneous license files.
Expand Down

0 comments on commit c701c12

Please sign in to comment.