Skip to content

Commit

Permalink
[Feature-#1897][gbasehk] annotation gbasehk connector
Browse files Browse the repository at this point in the history
  • Loading branch information
libailin authored and yanghuaiGit committed Jun 28, 2024
1 parent b43f897 commit 2dcd8db
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 1 deletion.
35 changes: 35 additions & 0 deletions chunjun-connectors/chunjun-connector-ftp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,41 @@ under the License.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
<artifactSet>
<excludes>
<exclude>org.slf4j:slf4j-api</exclude>
<exclude>log4j:log4j</exclude>
<exclude>ch.qos.logback:*</exclude>
</excludes>
</artifactSet>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
<relocations>
<relocation>
<pattern>org.apache.poi</pattern>
<shadedPattern>com.dtstack.chunjun.connector.ftp.shaded.org.apache.poi</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>

<plugin>
Expand Down
2 changes: 1 addition & 1 deletion chunjun-connectors/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
<module>chunjun-connector-dm</module>
<module>chunjun-connector-gbase</module>
<module>chunjun-connector-gbase8s</module>
<module>chunjun-connector-gbasehk</module>
<!-- <module>chunjun-connector-gbasehk</module>-->
<module>chunjun-connector-clickhouse</module>
<module>chunjun-connector-saphana</module>
<module>chunjun-connector-doris</module>
Expand Down

0 comments on commit 2dcd8db

Please sign in to comment.