aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: b3ab2939fe7f7832eaebfdf52fefb716ca30dae8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
language: java
sudo: false
install: true

jdk:
  - oraclejdk8

env:
  - DATABASE=H2
  - DATABASE=POSTGRES
  - DATABASE=MYSQL

script:
  - ./travis.sh

cache:
  directories:
    - '$HOME/.m2/repository'
before_cache:
  - 'rm -rf $HOME/.m2/repository/org/codehaus/sonar'

notifications:
  email: false