You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by bi...@apache.org on 2018/09/15 08:35:27 UTC

[kylin] branch update_travis_maven updated (4c1faf1 -> 1e02623)

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

billyliu pushed a change to branch update_travis_maven
in repository https://gitbox.apache.org/repos/asf/kylin.git.


 discard 4c1faf1  minor, update maven to 3.5.4 in travis build
     add d9972ee  KYLIN-3513 add plugin version to pom.xml KYLIN-3513 disable javadoc check KYLIN-3513 use SHA-256 algorithm
     add 0c1ef1d  minor, less test rows in RocksDBLookupTableCacheTest
     add 501a804  KYLIN-3513 bump main version to 2.6.0
     new 1e02623  minor, update maven to 3.5.4 in travis build

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (4c1faf1)
            \
             N -- N -- N   refs/heads/update_travis_maven (1e02623)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 assembly/pom.xml                                   |  2 +-
 atopcalcite/pom.xml                                |  2 +-
 core-common/pom.xml                                | 31 +---------------------
 .../java/org/apache/kylin/common/KylinVersion.java |  2 +-
 core-cube/pom.xml                                  |  2 +-
 core-dictionary/pom.xml                            |  2 +-
 .../lookup/cache/RocksDBLookupTableCacheTest.java  |  2 +-
 core-job/pom.xml                                   |  2 +-
 core-metadata/pom.xml                              |  2 +-
 core-metrics/pom.xml                               |  2 +-
 core-storage/pom.xml                               |  2 +-
 engine-mr/pom.xml                                  |  2 +-
 engine-spark/pom.xml                               |  2 +-
 jdbc/pom.xml                                       |  2 +-
 kylin-it/pom.xml                                   |  2 +-
 metrics-reporter-hive/pom.xml                      |  2 +-
 metrics-reporter-kafka/pom.xml                     |  2 +-
 pom.xml                                            | 18 ++++++++++---
 query/pom.xml                                      |  2 +-
 server-base/pom.xml                                |  2 +-
 server/pom.xml                                     |  2 +-
 source-hive/pom.xml                                |  6 +----
 source-kafka/pom.xml                               |  2 +-
 storage-hbase/pom.xml                              |  2 +-
 tomcat-ext/pom.xml                                 |  2 +-
 tool-assembly/pom.xml                              |  2 +-
 tool/pom.xml                                       |  2 +-
 27 files changed, 40 insertions(+), 63 deletions(-)


[kylin] 01/01: minor, update maven to 3.5.4 in travis build

Posted by bi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

billyliu pushed a commit to branch update_travis_maven
in repository https://gitbox.apache.org/repos/asf/kylin.git

commit 1e02623b0a2af6e13182c3228481db85ff6d6d37
Author: Billy Liu <bi...@apache.org>
AuthorDate: Wed Sep 12 22:04:46 2018 +0800

    minor, update maven to 3.5.4 in travis build
---
 .travis.yml | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 1941c76..bd250ef 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -25,11 +25,16 @@ addons:
 
 cache:
   directories:
-    - $HOME/.m2
-
+    - "$HOME/.m2/repository"
+    - "$HOME/apache-maven-3.5.4"
 jdk:
   - oraclejdk8
 
+before_install:
+  - export M2_HOME=$HOME/apache-maven-3.5.4
+  - if [ ! -d $M2_HOME/bin ]; then curl https://archive.apache.org/dist/maven/maven-3/3.5.4/binaries/apache-maven-3.5.4-bin.tar.gz | tar zxf - -C $HOME; fi
+  - export PATH=$M2_HOME/bin:$PATH
+
 before_script:
   - echo "MAVEN_OPTS='-Xms1024m -Xmx3072m -XX:MetaspaceSize=128m -XX:MaxMetaspaceSize=384m'" > ~/.mavenrc