Skip to content

Commit

Permalink
[FLINK-16834] Add flink-clients dependency to flink-walkthroughs
Browse files Browse the repository at this point in the history
With inverting the dependency between flink-clients and flink-streaming-java,
it is now necessary to explicitly add the flink-clients dependency in order
to execute the walkthrough jobs from within the IDE.

This closes apache#11551.
  • Loading branch information
tillrohrmann committed Apr 1, 2020
1 parent 3ce6ecd commit da46ab6
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,12 @@ under the License.
<version>${flink.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.flink</groupId>
<artifactId>flink-clients_${scala.binary.version}</artifactId>
<version>${flink.version}</version>
<scope>provided</scope>
</dependency>

<!-- Add connector dependencies here. They must be in the default scope (compile). -->

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,12 @@ under the License.
<version>${flink.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.flink</groupId>
<artifactId>flink-clients_${scala.binary.version}</artifactId>
<version>${flink.version}</version>
<scope>provided</scope>
</dependency>

<!-- Add connector dependencies here. They must be in the default scope (compile). -->

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,12 @@ under the License.
<version>${flink.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.flink</groupId>
<artifactId>flink-clients_${scala.binary.version}</artifactId>
<version>${flink.version}</version>
<scope>provided</scope>
</dependency>

<!-- Table ecosystem -->
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,12 @@ under the License.
<version>${flink.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.flink</groupId>
<artifactId>flink-clients_${scala.binary.version}</artifactId>
<version>${flink.version}</version>
<scope>provided</scope>
</dependency>

<!-- Table ecosystem -->
<dependency>
Expand Down

0 comments on commit da46ab6

Please sign in to comment.