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

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

commit 5c8386d022719f72fbb161c6727c0c2e2a3c12f1
Author: Nico Kruber <n...@ververica.com>
AuthorDate: Fri Jul 2 11:36:27 2021 +0200

    [hotfix][gradle] set project properties in a central place
    
    Also, we actually only have the root project's description, so let's not set
    it for all subprojects!
---
 build.gradle | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/build.gradle b/build.gradle
index eb42442..7697737 100644
--- a/build.gradle
+++ b/build.gradle
@@ -19,6 +19,13 @@ plugins {
     id 'com.github.johnrengelman.shadow' version '7.0.0' apply false
 }
 
+description = "Flink Training Exercises"
+
+allprojects {
+    group = 'org.apache.flink'
+    version = '1.13-SNAPSHOT'
+}
+
 subprojects {
     apply plugin: 'java'
     apply plugin: 'scala' // optional; uncomment if needed
@@ -29,11 +36,6 @@ subprojects {
     apply plugin: 'checkstyle'
     apply plugin: 'eclipse'
 
-    // artifact properties
-    group = 'org.apache.flink'
-    version = '1.13-SNAPSHOT'
-    description = """Flink Training Exercises"""
-
     ext {
         javaVersion = '1.8'
         flinkVersion = '1.13.1'

Reply via email to