Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,13 @@
<include>org.apache.httpcomponents.*</include>
<include>org.apache.hc.*</include>
<include>com.google.code.gson:gson</include>
<include>com.google.guava:guava</include>
<!-- REMOVED for GraalVM native-image support: Guava remains as transitive dependency -->
<!-- <include>com.google.guava:guava</include> -->
<include>org.yaml:snakeyaml:*</include>

<!-- Transitive dependency of guava -->
<include>org.checkerframework:*</include>
<!-- REMOVED for GraalVM native-image support: transitive dependency of guava -->
<!-- <include>org.checkerframework:*</include> -->

<!-- Transitive dependency of httpclient5. Package name is org.apache.commons -->
<include>commons-codec:*</include>
Expand All @@ -89,18 +91,24 @@
<pattern>org.apache</pattern>
<shadedPattern>split.org.apache</shadedPattern>
</relocation>
<!-- REMOVED for GraalVM native-image support: transitive dependency of guava -->
<!--
<relocation>
<pattern>org.checkerframework</pattern>
<shadedPattern>split.org.checkerframework</shadedPattern>
</relocation>
-->
<relocation>
<pattern>org.yaml.snakeyaml</pattern>
<shadedPattern>split.org.yaml.snakeyaml</shadedPattern>
</relocation>
<!-- REMOVED for GraalVM native-image support: standard Guava has native-image config -->
<!--
<relocation>
<pattern>com.google</pattern>
<shadedPattern>split.com.google</shadedPattern>
</relocation>
-->
</relocations>
<filters>
<filter>
Expand Down