Repository: flink Updated Branches: refs/heads/master 1b1c00286 -> af3ea8103
[hotfix] [sql-client] Use hard-coded Scala version Project: http://git-wip-us.apache.org/repos/asf/flink/repo Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/af3ea810 Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/af3ea810 Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/af3ea810 Branch: refs/heads/master Commit: af3ea81031cfb4b95dbc03b87037f2330b4d129f Parents: 1b1c002 Author: Timo Walther <[email protected]> Authored: Mon Feb 19 13:53:20 2018 +0100 Committer: Timo Walther <[email protected]> Committed: Fri Feb 23 15:13:56 2018 +0100 ---------------------------------------------------------------------- flink-libraries/flink-sql-client/pom.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flink/blob/af3ea810/flink-libraries/flink-sql-client/pom.xml ---------------------------------------------------------------------- diff --git a/flink-libraries/flink-sql-client/pom.xml b/flink-libraries/flink-sql-client/pom.xml index 3c7a8e2..743f583 100644 --- a/flink-libraries/flink-sql-client/pom.xml +++ b/flink-libraries/flink-sql-client/pom.xml @@ -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> @@ -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> @@ -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>
