Flink Streaming Core 0.10 in maven repos

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

Flink Streaming Core 0.10 in maven repos

LINZ, Arnaud
Hello,

Small question: I can't find the Streaming Core component in 0.10 version in the maven repo :
http://mvnrepository.com/artifact/org.apache.flink/flink-streaming-core

Thus in my pom file this artifact is the only part of my Flink's dependencies to stay in 0.10-SNAPSHOT version.
Is there something wrong with that component's publication in 0.10 version ?

Greetings,
Arnaud


________________________________

L'intégrité de ce message n'étant pas assurée sur internet, la société expéditrice ne peut être tenue responsable de son contenu ni de ses pièces jointes. Toute utilisation ou diffusion non autorisée est interdite. Si vous n'êtes pas destinataire de ce message, merci de le détruire et d'avertir l'expéditeur.

The integrity of this message cannot be guaranteed on the Internet. The company that sent this message cannot therefore be held liable for its content nor attachments. Any unauthorized use or dissemination is prohibited. If you are not the intended recipient of this message, then please delete it and notify the sender.
Reply | Threaded
Open this post in threaded view
|

Re: Flink Streaming Core 0.10 in maven repos

Suneel Marthi
This is what I used for a Flink Streaming talk and demo at a meetup last week, this is with Flink 0.10.0

<dependency>
<groupId>org.apache.flink</groupId>
<artifactId>flink-core</artifactId>
<version>${flink.version}</version>
</dependency>
<dependency>
<groupId>org.apache.flink</groupId>
<artifactId>flink-streaming-java</artifactId>
<version>${flink.version}</version>
</dependency>
<dependency>
<groupId>org.apache.flink</groupId>
<artifactId>flink-runtime</artifactId>
<version>${flink.version}</version>
</dependency>
<dependency>
<groupId>org.apache.flink</groupId>
<artifactId>flink-streaming-scala</artifactId>
<version>${flink.version}</version>
</dependency>

<flink-streaming-core> was in Flink 0.9, the above pom worked for me with flink 0.10.0

On Mon, Nov 23, 2015 at 3:07 AM, LINZ, Arnaud <[hidden email]> wrote:
Hello,

Small question: I can't find the Streaming Core component in 0.10 version in the maven repo :
http://mvnrepository.com/artifact/org.apache.flink/flink-streaming-core

Thus in my pom file this artifact is the only part of my Flink's dependencies to stay in 0.10-SNAPSHOT version.
Is there something wrong with that component's publication in 0.10 version ?

Greetings,
Arnaud


________________________________

L'intégrité de ce message n'étant pas assurée sur internet, la société expéditrice ne peut être tenue responsable de son contenu ni de ses pièces jointes. Toute utilisation ou diffusion non autorisée est interdite. Si vous n'êtes pas destinataire de ce message, merci de le détruire et d'avertir l'expéditeur.

The integrity of this message cannot be guaranteed on the Internet. The company that sent this message cannot therefore be held liable for its content nor attachments. Any unauthorized use or dissemination is prohibited. If you are not the intended recipient of this message, then please delete it and notify the sender.

Reply | Threaded
Open this post in threaded view
|

Re: Flink Streaming Core 0.10 in maven repos

Stephan Ewen
In reply to this post by LINZ, Arnaud
Hi Arnaud!

In 0.10 , we renamed the dependency to "flink-streaming-java" (and flink-streaming-scala"), to be more in line with the structure of the dependencies on the batch side.

Just replace "flink-streaming-core" with "flink-streaming-java"...

Greetings,
Stephan


On Mon, Nov 23, 2015 at 9:07 AM, LINZ, Arnaud <[hidden email]> wrote:
Hello,

Small question: I can't find the Streaming Core component in 0.10 version in the maven repo :
http://mvnrepository.com/artifact/org.apache.flink/flink-streaming-core

Thus in my pom file this artifact is the only part of my Flink's dependencies to stay in 0.10-SNAPSHOT version.
Is there something wrong with that component's publication in 0.10 version ?

Greetings,
Arnaud


________________________________

L'intégrité de ce message n'étant pas assurée sur internet, la société expéditrice ne peut être tenue responsable de son contenu ni de ses pièces jointes. Toute utilisation ou diffusion non autorisée est interdite. Si vous n'êtes pas destinataire de ce message, merci de le détruire et d'avertir l'expéditeur.

The integrity of this message cannot be guaranteed on the Internet. The company that sent this message cannot therefore be held liable for its content nor attachments. Any unauthorized use or dissemination is prohibited. If you are not the intended recipient of this message, then please delete it and notify the sender.

Reply | Threaded
Open this post in threaded view
|

Re: Flink Streaming Core 0.10 in maven repos

Ufuk Celebi
There is also this guide: https://cwiki.apache.org/confluence/display/FLINK/Migration+Guide%3A+0.9.x+to+0.10.x

On Monday, 23 November 2015, Stephan Ewen <[hidden email]> wrote:
Hi Arnaud!

In 0.10 , we renamed the dependency to "flink-streaming-java" (and flink-streaming-scala"), to be more in line with the structure of the dependencies on the batch side.

Just replace "flink-streaming-core" with "flink-streaming-java"...

Greetings,
Stephan


On Mon, Nov 23, 2015 at 9:07 AM, LINZ, Arnaud <<a href="javascript:_e(%7B%7D,&#39;cvml&#39;,&#39;ALINZ@bouyguestelecom.fr&#39;);" target="_blank">ALINZ@...> wrote:
Hello,

Small question: I can't find the Streaming Core component in 0.10 version in the maven repo :
http://mvnrepository.com/artifact/org.apache.flink/flink-streaming-core

Thus in my pom file this artifact is the only part of my Flink's dependencies to stay in 0.10-SNAPSHOT version.
Is there something wrong with that component's publication in 0.10 version ?

Greetings,
Arnaud


________________________________

L'intégrité de ce message n'étant pas assurée sur internet, la société expéditrice ne peut être tenue responsable de son contenu ni de ses pièces jointes. Toute utilisation ou diffusion non autorisée est interdite. Si vous n'êtes pas destinataire de ce message, merci de le détruire et d'avertir l'expéditeur.

The integrity of this message cannot be guaranteed on the Internet. The company that sent this message cannot therefore be held liable for its content nor attachments. Any unauthorized use or dissemination is prohibited. If you are not the intended recipient of this message, then please delete it and notify the sender.