-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.travis.yml
30 lines (25 loc) · 897 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
language: java
env:
global:
# The next declaration is the encrypted COVERITY_SCAN_TOKEN, created
# via the "travis encrypt" command using the project repo's public key
- secure: "H++md51jq/ANOWItsany1pKllMuLrQCv0El1j2qNuwPPxxFh0JqyQ2TZruqD6JY6l1b9JMbgiesUsl04vu1p3UeQOofnJQCFE0Ym69qN43nZJMU7AvYNLTq7mhdEeHXxy1gC0wtSXKaI0nS+m0O4eKV0D1cyzX0+sSlrruy+ZsA="
install: mvn install -Ddev
jdk:
- openjdk8
- oraclejdk11
- openjdk12
- openjdk13
- openjdk14
- openjdk15
addons:
coverity_scan:
project:
name: "Ekryd/reflection-utils"
description: "A utility library to handle Java reflection with ease "
notification_email: bjorn.ekryd@gmail.com
build_command_prepend: "mvn clean -Ddev"
build_command: "mvn compile -Ddev -DskipTests=true"
branch_pattern: coverity_scan
after_success:
- mvn clean test jacoco:report coveralls:report -Ddev