You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bahir.apache.org by lr...@apache.org on 2019/08/21 04:04:32 UTC

[bahir-flink] branch master updated: [BAHIR-210] upgrade flink to 1.8.1 (#62)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 311eea1  [BAHIR-210] upgrade flink to 1.8.1 (#62)
311eea1 is described below

commit 311eea13c419e2880c75aad2becf7ae920aaaeb8
Author: Joao Boto <bo...@boto.pro>
AuthorDate: Wed Aug 21 06:04:27 2019 +0200

    [BAHIR-210] upgrade flink to 1.8.1 (#62)
---
 .travis.yml | 12 ++++++------
 pom.xml     |  2 +-
 2 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index fd8c519..081403a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -38,10 +38,10 @@ jdk:
   - openjdk8
 
 env:
-  - FLINK_VERSION="1.8.0" SCALA_VERSION="2.11"
-  - FLINK_VERSION="1.8.0" SCALA_VERSION="2.11" PROJECT="flink-connector-flume" DOCKER="true"
-  - FLINK_VERSION="1.8.0" SCALA_VERSION="2.12"
-  - FLINK_VERSION="1.8.0" SCALA_VERSION="2.12" PROJECT="flink-connector-flume" DOCKER="true"
+  - FLINK_VERSION="1.8.1" SCALA_VERSION="2.11"
+  - FLINK_VERSION="1.8.1" SCALA_VERSION="2.11" PROJECT="flink-connector-flume" DOCKER="true"
+  - FLINK_VERSION="1.8.1" SCALA_VERSION="2.12"
+  - FLINK_VERSION="1.8.1" SCALA_VERSION="2.12" PROJECT="flink-connector-flume" DOCKER="true"
 
 before_install:
   - ./dev/change-scala-version.sh $SCALA_VERSION
@@ -49,8 +49,8 @@ before_install:
 script:
   - if [[ $DOCKER == "true" ]]; then
     docker-compose -f "$PROJECT/dockers/docker-compose.yml" up -d;
-    mvn clean verify -pl $PROJECT -Dscala-$SCALA_VERSION -Dflink.version=$FLINK_VERSION ;
+    mvn -q clean verify -pl $PROJECT -Dscala-$SCALA_VERSION -Dflink.version=$FLINK_VERSION ;
     docker-compose -f "$PROJECT/dockers/docker-compose.yml" down;
     else
-    mvn clean verify -Dscala-$SCALA_VERSION -Dflink.version=$FLINK_VERSION ;
+    mvn -q clean verify -Dscala-$SCALA_VERSION -Dflink.version=$FLINK_VERSION ;
     fi
diff --git a/pom.xml b/pom.xml
index 111e8a9..acd8e54 100644
--- a/pom.xml
+++ b/pom.xml
@@ -95,7 +95,7 @@
     <log4j.version>1.2.17</log4j.version>
 
     <!-- Flink version -->
-    <flink.version>1.8.0</flink.version>
+    <flink.version>1.8.1</flink.version>
 
     <junit.jupiter.version>5.4.1</junit.jupiter.version>
     <junit.groups></junit.groups>