You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ch...@apache.org on 2018/12/06 10:54:58 UTC

[flink] branch release-1.7 updated (1a40a08 -> a3ae8c0)

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

chesnay pushed a change to branch release-1.7
in repository https://gitbox.apache.org/repos/asf/flink.git.


    from 1a40a08  [hotfix][docs] Fix invalid link in schema_evolution doc
     new 5b945f7  [FLINK-10997][formats] Bundle kafka-scheme-registry-client
     new a3ae8c0  [FLINK-10987] Add LICENSE & NOTICE files for flink-avro-confluent-registry

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../flink-avro-confluent-registry/pom.xml          | 25 ++++++++++++++++++++--
 .../src/main/resources/META-INF/NOTICE             | 15 +++++++++++++
 2 files changed, 38 insertions(+), 2 deletions(-)
 create mode 100644 flink-formats/flink-avro-confluent-registry/src/main/resources/META-INF/NOTICE


[flink] 02/02: [FLINK-10987] Add LICENSE & NOTICE files for flink-avro-confluent-registry

Posted by ch...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

chesnay pushed a commit to branch release-1.7
in repository https://gitbox.apache.org/repos/asf/flink.git

commit a3ae8c0762858e3813c2b042f5915d9e2b948a35
Author: zentol <ch...@apache.org>
AuthorDate: Tue Nov 27 16:07:33 2018 +0100

    [FLINK-10987] Add LICENSE & NOTICE files for flink-avro-confluent-registry
---
 .../src/main/resources/META-INF/NOTICE                    | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/flink-formats/flink-avro-confluent-registry/src/main/resources/META-INF/NOTICE b/flink-formats/flink-avro-confluent-registry/src/main/resources/META-INF/NOTICE
new file mode 100644
index 0000000..24f2ff8
--- /dev/null
+++ b/flink-formats/flink-avro-confluent-registry/src/main/resources/META-INF/NOTICE
@@ -0,0 +1,15 @@
+flink-avro-confluent-registry
+Copyright 2014-2018 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) 
+
+- com.101tec:zkclient:0.10
+- com.fasterxml.jackson.core:jackson-databind:2.8.4
+- com.fasterxml.jackson.core:jackson-annotations:2.8.0
+- com.fasterxml.jackson.core:jackson-core:2.8.4
+- io.confluent:common-utils:3.3.1
+- io.confluent:kafka-schema-registry-client:3.3.1
+- org.apache.zookeeper:zookeeper:3.4.10


[flink] 01/02: [FLINK-10997][formats] Bundle kafka-scheme-registry-client

Posted by ch...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

chesnay pushed a commit to branch release-1.7
in repository https://gitbox.apache.org/repos/asf/flink.git

commit 5b945f73ea47364badb12ca0b9c45604b8028e73
Author: zentol <ch...@apache.org>
AuthorDate: Fri Nov 23 15:57:02 2018 +0100

    [FLINK-10997][formats] Bundle kafka-scheme-registry-client
---
 .../flink-avro-confluent-registry/pom.xml          | 25 ++++++++++++++++++++--
 1 file changed, 23 insertions(+), 2 deletions(-)

diff --git a/flink-formats/flink-avro-confluent-registry/pom.xml b/flink-formats/flink-avro-confluent-registry/pom.xml
index 9d81851..9b93e35 100644
--- a/flink-formats/flink-avro-confluent-registry/pom.xml
+++ b/flink-formats/flink-avro-confluent-registry/pom.xml
@@ -78,10 +78,31 @@ under the License.
 							<goal>shade</goal>
 						</goals>
 						<configuration>
+							<shadeTestJar>false</shadeTestJar>
+							<artifactSet>
+								<includes>
+									<include>io.confluent:*</include>
+									<include>com.fasterxml.jackson.core:*</include>
+									<include>org.apache.zookeeper:zookeeper</include>
+									<include>com.101tec:zkclient</include>
+								</includes>
+							</artifactSet>
 							<relocations combine.children="append">
 								<relocation>
-									<pattern>com.fasterxml.jackson.core</pattern>
-									<shadedPattern>org.apache.flink.formats.avro.registry.confluent.shaded.com.fasterxml.jackson.core</shadedPattern>
+									<pattern>com.fasterxml.jackson</pattern>
+									<shadedPattern>org.apache.flink.formats.avro.registry.confluent.shaded.com.fasterxml.jackson</shadedPattern>
+								</relocation>
+								<relocation>
+									<pattern>org.apache.zookeeper</pattern>
+									<shadedPattern>org.apache.flink.formats.avro.registry.confluent.shaded.org.apache.zookeeper</shadedPattern>
+								</relocation>
+								<relocation>
+									<pattern>org.apache.jute</pattern>
+									<shadedPattern>org.apache.flink.formats.avro.registry.confluent.shaded.org.apache.jute</shadedPattern>
+								</relocation>
+								<relocation>
+									<pattern>org.I0Itec.zkclient</pattern>
+									<shadedPattern>org.apache.flink.formats.avro.registry.confluent.shaded.org.101tec</shadedPattern>
 								</relocation>
 							</relocations>
 						</configuration>