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 <[email protected]>
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