Reputation: 3531
My current try:
But working like that is somewhat cumbersome as you need :
Upvotes: 1
Views: 152
Reputation: 3531
Running IntelliJ solved my issues. I post this as an answer as Matthias provided the answer in a comment. Thanks Matthias.
Upvotes: 0
Reputation: 86
From Flink 0.10, the Flink community will provide Flink for Scala 2.11. Currently, you can use Flink for Scala 2.11 (0.10-SNAPSHOT) with Apache Snapshot Maven Repository.
You can add the repository using following maven settings:
<repositories>
<repository>
<id>apache.snapshots</id>
<name>Apache Snapshot Repository</name>
<url>http://repository.apache.org/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
Upvotes: 1