forked from apache/flink
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FLINK-20043][kinesis] Add flink-sql-connector-kinesis module for SQL…
… client This closes apache#14049.
- Loading branch information
1 parent
caa5104
commit 05b6124
Showing
11 changed files
with
189 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
Licensed to the Apache Software Foundation (ASF) under one | ||
or more contributor license agreements. See the NOTICE file | ||
distributed with this work for additional information | ||
regarding copyright ownership. The ASF licenses this file | ||
to you under the Apache License, Version 2.0 (the | ||
"License"); you may not use this file except in compliance | ||
with the License. You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, | ||
software distributed under the License is distributed on an | ||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
KIND, either express or implied. See the License for the | ||
specific language governing permissions and limitations | ||
under the License. | ||
--> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
|
||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<artifactId>flink-connectors</artifactId> | ||
<groupId>org.apache.flink</groupId> | ||
<version>1.12-SNAPSHOT</version> | ||
<relativePath>..</relativePath> | ||
</parent> | ||
|
||
<artifactId>flink-sql-connector-kinesis_${scala.binary.version}</artifactId> | ||
<name>Flink : Connectors : SQL : Kinesis</name> | ||
|
||
<packaging>jar</packaging> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.apache.flink</groupId> | ||
<artifactId>flink-connector-kinesis_${scala.binary.version}</artifactId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-shade-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>shade-flink</id> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>shade</goal> | ||
</goals> | ||
<configuration> | ||
<shadeTestJar>false</shadeTestJar> | ||
<artifactSet> | ||
<includes> | ||
<include>org.apache.flink:flink-connector-kinesis_${scala.binary.version}</include> | ||
<include>com.fasterxml.jackson.core:jackson-core</include> | ||
<include>com.fasterxml.jackson.core:jackson-databind</include> | ||
<include>com.fasterxml.jackson.core:jackson-annotations</include> | ||
<include>com.fasterxml.jackson.dataformat:jackson-dataformat-cbor</include> | ||
<include>joda-time:joda-time</include> | ||
<include>commons-codec:commons-codec</include> | ||
<include>commons-io:commons-io</include> | ||
<include>commons-lang:commons-lang</include> | ||
<include>commons-logging:commons-logging</include> | ||
<include>org.apache.commons:commons-lang3</include> | ||
<include>com.google.guava:guava</include> | ||
</includes> | ||
</artifactSet> | ||
<filters> | ||
<filter> | ||
<artifact>*:*</artifact> | ||
<excludes> | ||
<exclude>codegen-resources/**</exclude> | ||
<exclude>mozilla/public-suffix-list.txt</exclude> | ||
<exclude>VersionInfo.java</exclude> | ||
<exclude>mime.types</exclude> | ||
</excludes> | ||
</filter> | ||
</filters> | ||
<relocations> | ||
<relocation> | ||
<pattern>com.fasterxml.jackson</pattern> | ||
<shadedPattern>org.apache.flink.kinesis.shaded.com.fasterxml.jackson</shadedPattern> | ||
</relocation> | ||
<relocation> | ||
<pattern>org.apache.commons</pattern> | ||
<shadedPattern>org.apache.flink.kinesis.shaded.org.apache.commons</shadedPattern> | ||
</relocation> | ||
<relocation> | ||
<pattern>com.google</pattern> | ||
<shadedPattern>org.apache.flink.kinesis.shaded.com.google</shadedPattern> | ||
</relocation> | ||
<relocation> | ||
<pattern>org.joda.time</pattern> | ||
<shadedPattern>org.apache.flink.kinesis.shaded.org.joda.time</shadedPattern> | ||
</relocation> | ||
</relocations> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
19 changes: 19 additions & 0 deletions
19
flink-connectors/flink-sql-connector-kinesis/src/main/resources/META-INF/NOTICE
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
flink-sql-connector-kinesis | ||
Copyright 2014-2020 The Apache Software Foundation | ||
|
||
This product includes software developed at | ||
The Apache Software Foundation (http://www.apache.org/). | ||
|
||
This project bundles the following dependencies under the Apache Software License 2.0. (http://www.apache.org/licenses/LICENSE-2.0.txt) | ||
|
||
- joda-time:joda-time:2.5 | ||
- commons-io:commons-io:2.7 | ||
- commons-lang:commons-lang:2.6 | ||
- commons-logging:commons-logging:1.1.3 | ||
- commons-codec:commons-codec:1.13 | ||
- org.apache.commons:commons-lang3:3.3.2 | ||
- com.google.guava:guava:18.0 | ||
- com.fasterxml.jackson.core:jackson-annotations:2.10.1 | ||
- com.fasterxml.jackson.core:jackson-databind:2.10.1 | ||
- com.fasterxml.jackson.core:jackson-core:2.10.1 | ||
- com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:2.10.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters