mirror of
https://github.com/BentoBoxWorld/BentoBox.git
synced 2024-11-01 00:10:40 +01:00
c3e8f9e3be
Compiling of jdk11 is FYI for now.
27 lines
565 B
YAML
27 lines
565 B
YAML
language: java
|
|
sudo: false
|
|
addons:
|
|
sonarcloud:
|
|
organization: "tastybento-github"
|
|
token:
|
|
secure: $SONAR_TOKEN
|
|
branches:
|
|
- develop
|
|
- master
|
|
jdk:
|
|
- openjdk8
|
|
- openjdk11
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- jdk: openjdk11
|
|
|
|
script:
|
|
#- sonar-scanner
|
|
- mvn clean org.jacoco:jacoco-maven-plugin:prepare-agent package -P sonar sonar:sonar -B
|
|
#- echo "${TRAVIS_PULL_REQUEST_BRANCH:-$TRAVIS_BRANCH}"
|
|
cache:
|
|
directories:
|
|
- '$HOME/.m2/repository'
|
|
- '$HOME/.sonar/cache'
|