Skip to content

Commit

Permalink
[hotfix] [sql-client] Use hard-coded Scala version
Browse files Browse the repository at this point in the history
  • Loading branch information
twalthr committed Feb 23, 2018
1 parent 1b1c002 commit af3ea81
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions flink-libraries/flink-sql-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,21 +46,21 @@ under the License.
<dependency>
<groupId>org.apache.flink</groupId>
<!-- use a dedicated Scala version to not depend on it -->
<artifactId>flink-clients_${scala.binary.version}</artifactId>
<artifactId>flink-clients_2.11</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.apache.flink</groupId>
<!-- use a dedicated Scala version to not depend on it -->
<artifactId>flink-streaming-scala_${scala.binary.version}</artifactId>
<artifactId>flink-streaming-scala_2.11</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.apache.flink</groupId>
<!-- use a dedicated Scala version to not depend on it -->
<artifactId>flink-table_${scala.binary.version}</artifactId>
<artifactId>flink-table_2.11</artifactId>
<version>${project.version}</version>
</dependency>

Expand Down Expand Up @@ -115,7 +115,7 @@ under the License.
<dependency>
<groupId>org.apache.flink</groupId>
<!-- use a dedicated Scala version to not depend on it -->
<artifactId>flink-runtime_${scala.binary.version}</artifactId>
<artifactId>flink-runtime_2.11</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
<scope>test</scope>
Expand All @@ -124,7 +124,7 @@ under the License.
<dependency>
<groupId>org.apache.flink</groupId>
<!-- use a dedicated Scala version to not depend on it -->
<artifactId>flink-test-utils_${scala.binary.version}</artifactId>
<artifactId>flink-test-utils_2.11</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
Expand Down

0 comments on commit af3ea81

Please sign in to comment.