add missing @NonNull annotations
[storage-units.git] / .travis.yml
blob336e90c72b8596f581fd37098aa8417c55ea567b
1 # see http://docs.travis-ci.com/user/languages/java/
2 language: java
3 jdk:
4   - oraclejdk8
6 # see http://docs.travis-ci.com/user/workers/container-based-infrastructure/
7 sudo: false
9 # see http://docs.travis-ci.com/user/caching/#Arbitrary-directories
10 cache:
11   directories:
12   - $HOME/.m2
14 after_success:
15 - mvn clean test jacoco:report coveralls:report
18 env:
19   global:
20    # COVERITY_SCAN_TOKEN
21    - secure: "Bm3zHFYJZlWPpUJXYbx8VxGEhMQeu/PUlNFbc10t1C7OEazjgtN9pYyWAxmYM2rAtvhiGF+yy9H+UdfaWd7NrHDoBXWbJjxagKhEsXxi931GtwxfxyxAmhmOuLQXaS9xofKIi7wYCyt8ekPaW8gsXWBWVmN0A1bpqdF93QwV2uU="
23 addons:
24   coverity_scan:
25     project:
26       name: "sebhoss/storage-units"
27       description: "Build submitted via Travis CI"
28     notification_email: mail@shoss.de
29     build_command_prepend: "mvn clean"
30     build_command:   "mvn -DskipTests=true compile"
31     branch_pattern: master
33 # see https://docs.travis-ci.com/user/notifications/#IRC-notification
34 notifications:
35   irc: "chat.freenode.net#metio.wtf"