Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 0E951200B9B for ; Wed, 12 Oct 2016 12:07:36 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 0D668160AD4; Wed, 12 Oct 2016 10:07:36 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 58262160AD3 for ; Wed, 12 Oct 2016 12:07:35 +0200 (CEST) Received: (qmail 81456 invoked by uid 500); 12 Oct 2016 10:07:34 -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 81447 invoked by uid 99); 12 Oct 2016 10:07:34 -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; Wed, 12 Oct 2016 10:07:34 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 7222DDFDEC; Wed, 12 Oct 2016 10:07:34 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: mxm@apache.org To: commits@flink.apache.org Message-Id: <1bb78f7dbae34067834825e4cc9f47c3@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: flink git commit: [FLINK-4799] re-add 'build-target' symlink on Unix systems Date: Wed, 12 Oct 2016 10:07:34 +0000 (UTC) archived-at: Wed, 12 Oct 2016 10:07:36 -0000 Repository: flink Updated Branches: refs/heads/master 7b79c8b52 -> 15df71ba9 [FLINK-4799] re-add 'build-target' symlink on Unix systems This adds back the link 'build-target' which points to the final build assembly in 'flink-dist/target/'. This closes #2620 Project: http://git-wip-us.apache.org/repos/asf/flink/repo Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/15df71ba Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/15df71ba Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/15df71ba Branch: refs/heads/master Commit: 15df71ba9b4d6c630a09b1b46d5419b821464d97 Parents: 7b79c8b Author: Maximilian Michels Authored: Tue Oct 11 13:54:55 2016 +0200 Committer: Maximilian Michels Committed: Wed Oct 12 12:06:08 2016 +0200 ---------------------------------------------------------------------- flink-dist/pom.xml | 54 ++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 53 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flink/blob/15df71ba/flink-dist/pom.xml ---------------------------------------------------------------------- diff --git a/flink-dist/pom.xml b/flink-dist/pom.xml index 4687f20..010e9b5 100644 --- a/flink-dist/pom.xml +++ b/flink-dist/pom.xml @@ -128,8 +128,8 @@ under the License. - + include-yarn @@ -146,6 +146,57 @@ under the License. + + + + symlink-build-target + + + unix + + + + + + org.codehaus.mojo + exec-maven-plugin + 1.5.0 + + + remove-build-target-link + clean + + exec + + + rm + + -f + ${project.basedir}/../build-target + + + + + create-build-target-link + package + + exec + + + ln + + -sf + ${project.basedir}/target/flink-${project.version}-bin/flink-${project.version} + ${project.basedir}/../build-target + + + + + + + + + @@ -270,4 +321,5 @@ under the License. +