How to build flink-dist.jar from source code

2017-08-11 Thread Michael Fong
Hi, I am new to Flink. I would like to know how to build the flink-dist.jar from source code, i.e. from the master branch from github. Could anyone show me the quickest way to do so? Thanks in advance. Sincerely, Michael Fong

Re: How to build flink-dist.jar from source code

2017-08-11 Thread Ted Yu
**Maven 3.3.x** The build has to be done in two steps: First in the base directory, then in the distribution project: ~~~bash mvn clean install -DskipTests cd flink-dist mvn clean install On Fri, Aug 11, 2017 at 6:19 PM, Michael Fong wrote: > Hi, > > I am new to Flink. I would like to know how

Re: How to build flink-dist.jar from source code

2017-08-11 Thread Michael Fong
Cool. Thanks! On Sat, Aug 12, 2017 at 9:44 AM, Ted Yu wrote: > **Maven 3.3.x** > The build has to be done in two steps: First in the base directory, then in > the distribution project: > > ~~~bash > mvn clean install -DskipTests > cd flink-dist > mvn clean install > > On Fri, Aug 11, 2017 at 6:1