aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 152b8f769ba3e7604126e5d5af1f150a02b4c1cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
language: scala

jdk:
  - oraclejdk8

scala:
  - 2.11.11

cache:
  directories:
    - $HOME/.ivy2/cache

before_cache:
  # Delete all ivydata files since ivy touches them on each build
  - find $HOME/.ivy2/cache -name "ivydata-*.properties" -print0 | xargs -n10 -0 rm
  - find $HOME/.ivy2/cache -name "*-SNAPSHOT*" -print0 | xargs -n10 -0 rm

script: "sbt clean test"