-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
44 lines (44 loc) · 1.1 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
43
44
notifications:
email: false
git:
quiet: true
depth: 1
env:
global:
- TERM=dumb
language: java
jdk: openjdk8
install: true
jobs:
include:
- stage: test
jdk: openjdk8
name: test jdk8
script:
- ./mvnw -U
- java -jar guava-eventbus/target/*-all.jar
- java -jar publish-subscribe/target/*-all.jar
- java -jar reflections-class-path-scanning-annotation-type/target/*-all.jar
- java -jar spring-class-path-scanning-annotation-type/target/*-all.jar
- stage: test
jdk: openjdk8
name: check updates jdk8
script: ./mvnw versions:display-property-updates
- stage: test
jdk: openjdk11
name: test jdk11
script:
- ./mvnw -U
- java -jar guava-eventbus/target/*-all.jar
- java -jar publish-subscribe/target/*-all.jar
- java -jar reflections-class-path-scanning-annotation-type/target/*-all.jar
- java -jar spring-class-path-scanning-annotation-type/target/*-all.jar
- stage: test
jdk: openjdk11
name: check updates jdk11
script: ./mvnw versions:display-property-updates
cache:
pip: true
packages: true
directories:
- ~/.m2