how to build the connectors and examples from the source

classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

how to build the connectors and examples from the source

Chris Kellogg
How can one build a connectors jar from the source?

Also, is there a quick way to build the examples from the source without
having to do a mvn clean package -DskipTests?


Thanks.
Chris
Reply | Threaded
Open this post in threaded view
|

Re: how to build the connectors and examples from the source

Ted Yu
Which connector from the following list are you trying to build ?

https://flink.apache.org/ecosystem.html#connectors

The available connectors from 1.5.0 are quite recent. Is there any
functionality missing in the 1.5.0 release ?

Thanks

On Tue, Jun 12, 2018 at 5:17 PM, Chris Kellogg <[hidden email]> wrote:

> How can one build a connectors jar from the source?
>
> Also, is there a quick way to build the examples from the source without
> having to do a mvn clean package -DskipTests?
>
>
> Thanks.
> Chris
>
Reply | Threaded
Open this post in threaded view
|

Re: how to build the connectors and examples from the source

Chesnay Schepler-3
You can build specific connector/examples by going into the the
respective directory and executing mvn clean package -DskipTests.

Connector:
* cd flink-connectors
* cd <connector_you_want>
* mvn clean package -DskipTests
* cd target
* pick jar

Example:
* cd flink-examples
* cd <api_you_want>
* mvn clean package -DskipTests
* cd target
* pick jar

On 13.06.2018 05:39, Ted Yu wrote:

> Which connector from the following list are you trying to build ?
>
> https://flink.apache.org/ecosystem.html#connectors
>
> The available connectors from 1.5.0 are quite recent. Is there any
> functionality missing in the 1.5.0 release ?
>
> Thanks
>
> On Tue, Jun 12, 2018 at 5:17 PM, Chris Kellogg <[hidden email]> wrote:
>
>> How can one build a connectors jar from the source?
>>
>> Also, is there a quick way to build the examples from the source without
>> having to do a mvn clean package -DskipTests?
>>
>>
>> Thanks.
>> Chris
>>