You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by sj...@apache.org on 2021/11/10 21:25:36 UTC

[flink-training] branch master updated: [FLINK-24782] Upgrade training exercises to 1.14

This is an automated email from the ASF dual-hosted git repository.

sjwiesman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink-training.git


The following commit(s) were added to refs/heads/master by this push:
     new 0b1c83b  [FLINK-24782] Upgrade training exercises to 1.14
0b1c83b is described below

commit 0b1c83b16065484200564402bef2ca10ef19cb30
Author: sjwiesman <sj...@gmail.com>
AuthorDate: Thu Nov 4 17:58:36 2021 -0500

    [FLINK-24782] Upgrade training exercises to 1.14
    
    This closes #42
---
 build.gradle        | 4 ++--
 common/build.gradle | 8 +-------
 2 files changed, 3 insertions(+), 9 deletions(-)

diff --git a/build.gradle b/build.gradle
index 163b8f5..9395b08 100644
--- a/build.gradle
+++ b/build.gradle
@@ -24,7 +24,7 @@ description = "Flink Training Exercises"
 
 allprojects {
     group = 'org.apache.flink'
-    version = '1.13-SNAPSHOT'
+    version = '1.14-SNAPSHOT'
 
     apply plugin: 'com.diffplug.spotless'
 
@@ -52,7 +52,7 @@ subprojects {
 
     ext {
         javaVersion = '1.8'
-        flinkVersion = '1.13.2'
+        flinkVersion = '1.14.0'
         scalaBinaryVersion = '2.12'
         log4jVersion = '2.12.1'
         junitVersion = '4.13'
diff --git a/common/build.gradle b/common/build.gradle
index 1eadb01..1fb6894 100644
--- a/common/build.gradle
+++ b/common/build.gradle
@@ -10,15 +10,9 @@ java {
 
 // common set of dependencies
 dependencies {
-    // --------------------------------------------------------------
-    // Compile-time dependencies that should NOT be part of the
-    // shadow jar and are provided in the lib folder of Flink
-    // --------------------------------------------------------------
-    shadow "org.apache.flink:flink-runtime_${scalaBinaryVersion}:${flinkVersion}"
-
     testApi "junit:junit:${junitVersion}"
     testApi "org.apache.flink:flink-streaming-java_${scalaBinaryVersion}:${flinkVersion}:tests"
-    testApi "org.apache.flink:flink-runtime_${scalaBinaryVersion}:${flinkVersion}:tests"
+    testApi "org.apache.flink:flink-runtime:${flinkVersion}:tests"
     testApi "org.apache.flink:flink-test-utils-junit:${flinkVersion}"
     testApi "org.apache.flink:flink-test-utils_${scalaBinaryVersion}:${flinkVersion}"
     testApi 'org.assertj:assertj-core:3.20.2'