From commits-return-6819-archive-asf-public=cust-asf.ponee.io@tamaya.incubator.apache.org Mon Apr 29 19:51:23 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id 224A518061A for ; Mon, 29 Apr 2019 21:51:23 +0200 (CEST) Received: (qmail 53803 invoked by uid 500); 29 Apr 2019 19:51:22 -0000 Mailing-List: contact commits-help@tamaya.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@tamaya.incubator.apache.org Delivered-To: mailing list commits@tamaya.incubator.apache.org Received: (qmail 53794 invoked by uid 99); 29 Apr 2019 19:51:22 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 29 Apr 2019 19:51:22 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 08ECA854D6; Mon, 29 Apr 2019 19:51:22 +0000 (UTC) Date: Mon, 29 Apr 2019 19:51:21 +0000 To: "commits@tamaya.apache.org" Subject: [incubator-tamaya-sandbox] branch master updated: TAMAYA-277: Integrate with SonarCloud MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <155656748198.30236.13311438693558565512@gitbox.apache.org> From: pottlinger@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: incubator-tamaya-sandbox X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 529eb572d1618f2c01468d3908c1f913f8f337bf X-Git-Newrev: ab06546b093b9d2aef75b368e6df38d76d85864b X-Git-Rev: ab06546b093b9d2aef75b368e6df38d76d85864b X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. pottlinger pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-tamaya-sandbox.git The following commit(s) were added to refs/heads/master by this push: new ab06546 TAMAYA-277: Integrate with SonarCloud ab06546 is described below commit ab06546b093b9d2aef75b368e6df38d76d85864b Author: Hugo Hirsch AuthorDate: Mon Apr 29 21:51:16 2019 +0200 TAMAYA-277: Integrate with SonarCloud --- .travis.yml | 29 ++++++++++++++++++++++++----- 1 file changed, 24 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index a545c25..6f2eb88 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,25 @@ language: java -jdk: - - openjdk8 - - openjdk9 - - openjdk10 - - openjdk11 +dist: trusty +sudo: required + +addons: + sonarcloud: + organization: "apache" + +jobs: + include: + - name: "Java 8" + jdk: openjdk8 + script: mvn clean install sonar:sonar -Dsonar.organization=apache -Dsonar.projectKey=apache_incubator-tamaya-sandbox + + - name: "Java 9" + jdk: openjdk9 + script: mvn clean install + + - name: "Java 10" + jdk: openjdk10 + script: mvn clean install + + - name: "Java 11" + jdk: openjdk11 + script: mvn clean install