You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zipkin.apache.org by ad...@apache.org on 2019/06/13 10:18:17 UTC

[incubator-zipkin-layout-factory] branch master updated: ensures license plugin doesn't run on travis

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

adriancole pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-zipkin-layout-factory.git


The following commit(s) were added to refs/heads/master by this push:
     new b98a45d  ensures license plugin doesn't run on travis
b98a45d is described below

commit b98a45d8b4751cd5292b0adb2926df22e285640b
Author: Adrian Cole <ac...@pivotal.io>
AuthorDate: Thu Jun 13 18:09:09 2019 +0800

    ensures license plugin doesn't run on travis
---
 .travis.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 34d4193..29ec3ca 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -16,8 +16,8 @@ before_install:
   - git config credential.helper "store --file=.git/credentials"
   - echo "https://$GH_TOKEN:@github.com" > .git/credentials
 
-# Override default travis to use the maven wrapper
-install: ./mvnw install -DskipTests=true -Dmaven.javadoc.skip=true -B -V
+# Override default travis to use the maven wrapper; skip license on travis due to #1512
+install: ./mvnw install -DskipTests=true -Dlicense.skip=true -Dmaven.javadoc.skip=true -B -V
 script: ./travis/publish.sh
 
 # Don't build release tags. This avoids publish conflicts because the version commit exists both on master and the release tag.