Return-Path: X-Original-To: apmail-flink-commits-archive@minotaur.apache.org Delivered-To: apmail-flink-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4130E18FFB for ; Tue, 16 Feb 2016 16:27:43 +0000 (UTC) Received: (qmail 32478 invoked by uid 500); 16 Feb 2016 16:27:43 -0000 Delivered-To: apmail-flink-commits-archive@flink.apache.org Received: (qmail 32438 invoked by uid 500); 16 Feb 2016 16:27:43 -0000 Mailing-List: contact commits-help@flink.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flink.apache.org Delivered-To: mailing list commits@flink.apache.org Received: (qmail 32429 invoked by uid 99); 16 Feb 2016 16:27:43 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 16 Feb 2016 16:27:43 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 0ABF9E020D; Tue, 16 Feb 2016 16:27:43 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: trohrmann@apache.org To: commits@flink.apache.org Message-Id: <93b9cadbbb0249b993a0bd8bcddf7fb3@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: flink git commit: [hotfix] [docs] Complete sentences in cluster_execution.md Date: Tue, 16 Feb 2016 16:27:43 +0000 (UTC) Repository: flink Updated Branches: refs/heads/master 2714aaf3d -> 932a49d7b [hotfix] [docs] Complete sentences in cluster_execution.md Project: http://git-wip-us.apache.org/repos/asf/flink/repo Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/932a49d7 Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/932a49d7 Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/932a49d7 Branch: refs/heads/master Commit: 932a49d7b4d10987c6ad63b8642408759944bf7e Parents: 2714aaf Author: Till Rohrmann Authored: Tue Feb 16 17:26:35 2016 +0100 Committer: Till Rohrmann Committed: Tue Feb 16 17:27:29 2016 +0100 ---------------------------------------------------------------------- docs/apis/cluster_execution.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flink/blob/932a49d7/docs/apis/cluster_execution.md ---------------------------------------------------------------------- diff --git a/docs/apis/cluster_execution.md b/docs/apis/cluster_execution.md index 6dfb14b..36cd21f 100644 --- a/docs/apis/cluster_execution.md +++ b/docs/apis/cluster_execution.md @@ -101,12 +101,11 @@ The latter version is recommended as it respects the classloader management in F To provide these dependencies not included by Flink we suggest two options with Maven. -1. The maven assembly plugin builds a so-called uber-jar(executable jar) -containing all your dependencies. -Assembly configuration is straight-forward, but the resulting jar might become bulky. See -[usage](http://maven.apache.org/plugins/maven-assembly-plugin/usage.html). -2. The maven unpack plugin, for unpacking the relevant parts of the dependencies and -then package it with your code. +1. The maven assembly plugin builds a so-called uber-jar (executable jar) containing all your dependencies. +The assembly configuration is straight-forward, but the resulting jar might become bulky. +See [maven-assembly-plugin](http://maven.apache.org/plugins/maven-assembly-plugin/usage.html) for further information. +2. The maven unpack plugin unpacks the relevant parts of the dependencies and +then packages it with your code. Using the latter approach in order to bundle the Kafka connector, `flink-connector-kafka` you would need to add the classes from both the connector and the Kafka API itself. Add