Repository: bigtop Updated Branches: refs/heads/master e552de18e -> c26f65235
BIGTOP-2604: Build flink-dist with proper shading Fix issue with Flink sub-module, flink-dist, where it does not properly shade dependencies because of an issue in Maven shade plugin (MNG-5899) Signed-off-by: Jonathan Kelly <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/bigtop/repo Commit: http://git-wip-us.apache.org/repos/asf/bigtop/commit/c26f6523 Tree: http://git-wip-us.apache.org/repos/asf/bigtop/tree/c26f6523 Diff: http://git-wip-us.apache.org/repos/asf/bigtop/diff/c26f6523 Branch: refs/heads/master Commit: c26f6523571bcb8748a3ce7d04a160d3aead47e5 Parents: e552de1 Author: Craig Foster <[email protected]> Authored: Mon Nov 21 10:37:50 2016 -0800 Committer: Jonathan Kelly <[email protected]> Committed: Thu Dec 22 14:22:43 2016 -0800 ---------------------------------------------------------------------- bigtop-packages/src/common/flink/do-component-build | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/bigtop/blob/c26f6523/bigtop-packages/src/common/flink/do-component-build ---------------------------------------------------------------------- diff --git a/bigtop-packages/src/common/flink/do-component-build b/bigtop-packages/src/common/flink/do-component-build index 4fa9102..a4fc9db 100644 --- a/bigtop-packages/src/common/flink/do-component-build +++ b/bigtop-packages/src/common/flink/do-component-build @@ -22,3 +22,5 @@ set -ex # Use Maven to build Flink from source mvn install $FLINK_BUILD_OPTS -Drat.skip=true -DskipTests -Dhadoop.version=$HADOOP_VERSION "$@" +cd flink-dist +mvn install $FLINK_BUILD_OPTS -Drat.skip=true -DskipTests -Dhadoop.version=$HADOOP_VERSION "$@" \ No newline at end of file
