forked from frankframework/frankframework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
42 lines (37 loc) · 1.12 KB
/
.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
31
32
33
34
35
36
37
38
39
40
41
42
dist: trusty
language: java
os:
- linux
jdk:
- openjdk8
cache:
directories:
- $HOME/.m2
before_install:
- cp .travis.settings.xml $HOME/.m2/settings.xml
- export TZ=Europe/Amsterdam
# Skip separate install phase as for some reason running the two default phases
# on Travis seem to cause the second phases to select the wrong profile
# (doesn't happen locally when running the exact same commands). And with maven
# it's not needed to have a separate install phase.
# Default install phase: mvn install -DskipTests=true -B
# Default script phase: mvn test -B
install: echo 'Skipping separate install phase'
script:
- >
if [ -z "$TRAVIS_CI_USER" ];
then
mvn install -B -V -T1 -Dmaven.javadoc.skip=true -Pibissource,codecoverage;
else
mvn install -B -V -T1 -Dmaven.javadoc.skip=true -Pproprietary,ibissource,codecoverage;
fi
notifications:
email:
recipients:
- travis-j@ibissource.org
- travis-j2@ibissource.org
- travis-n@ibissource.org
- travis-p@ibissource.org
- travis-g@ibissource.org
# on_success: always # default: change
# on_failure: always # default: always