You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@inlong.apache.org by do...@apache.org on 2023/03/01 06:21:13 UTC

[inlong] branch master updated: [INLONG-7451][Sort] Fix FileSystem connector dependency lost (#7452)

This is an automated email from the ASF dual-hosted git repository.

dockerzhang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/inlong.git


The following commit(s) were added to refs/heads/master by this push:
     new a5b4b1c3e [INLONG-7451][Sort] Fix FileSystem connector dependency lost (#7452)
a5b4b1c3e is described below

commit a5b4b1c3eb92551e1cfa37d60c9a8fb6a1f36d4b
Author: Xin Gong <ge...@gmail.com>
AuthorDate: Wed Mar 1 14:21:07 2023 +0800

    [INLONG-7451][Sort] Fix FileSystem connector dependency lost (#7452)
---
 inlong-sort/sort-connectors/filesystem/pom.xml | 35 ++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/inlong-sort/sort-connectors/filesystem/pom.xml b/inlong-sort/sort-connectors/filesystem/pom.xml
index 57735743a..d597d377b 100644
--- a/inlong-sort/sort-connectors/filesystem/pom.xml
+++ b/inlong-sort/sort-connectors/filesystem/pom.xml
@@ -54,6 +54,13 @@
                                 <includes>
                                     <include>org.apache.inlong:*</include>
                                     <include>com.google.protobuf:*</include>
+                                    <include>com.amazonaws:*</include>
+                                    <include>com.fasterxml.jackson.core:*</include>
+                                    <include>commons-logging:commons-logging</include>
+                                    <include>org.apache.httpcomponents:*</include>
+                                    <include>software.amazon.ion:*</include>
+                                    <include>joda-time:*</include>
+                                    <include>org.apache.commons:commons-lang3</include>
                                 </includes>
                             </artifactSet>
                             <filters>
@@ -70,6 +77,34 @@
                                     <pattern>org.apache.inlong.sort.base</pattern>
                                     <shadedPattern>org.apache.inlong.sort.filesystem.shaded.org.apache.inlong.sort.base</shadedPattern>
                                 </relocation>
+                                <relocation>
+                                    <pattern>com.amazonaws</pattern>
+                                    <shadedPattern>org.apache.inlong.sort.filesystem.shaded.com.amazonaws</shadedPattern>
+                                </relocation>
+                                <relocation>
+                                    <pattern>com.fasterxml.jackson.core</pattern>
+                                    <shadedPattern>org.apache.inlong.sort.filesystem.shaded.com.fasterxml.jackson.core</shadedPattern>
+                                </relocation>
+                                <relocation>
+                                    <pattern>org.apache.commons.logging</pattern>
+                                    <shadedPattern>org.apache.inlong.sort.filesystem.shaded.org.apache.commons.logging</shadedPattern>
+                                </relocation>
+                                <relocation>
+                                    <pattern>org.apache.http</pattern>
+                                    <shadedPattern>org.apache.inlong.sort.filesystem.shaded.org.apache.http</shadedPattern>
+                                </relocation>
+                                <relocation>
+                                    <pattern>software.amazon.ion</pattern>
+                                    <shadedPattern>org.apache.inlong.sort.filesystem.shaded.software.amazon.ion</shadedPattern>
+                                </relocation>
+                                <relocation>
+                                    <pattern>org.joda.time</pattern>
+                                    <shadedPattern>org.apache.inlong.sort.filesystem.shaded.org.joda.time</shadedPattern>
+                                </relocation>
+                                <relocation>
+                                    <pattern>org.apache.commons</pattern>
+                                    <shadedPattern>org.apache.inlong.sort.filesystem.shaded.org.apache.commons</shadedPattern>
+                                </relocation>
                             </relocations>
                         </configuration>
                     </execution>