This repository was archived by the owner on Dec 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.travis.yml
More file actions
42 lines (37 loc) · 1.34 KB
/
.travis.yml
File metadata and controls
42 lines (37 loc) · 1.34 KB
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: xenial
language: java
env:
global:
- SONATYPE_USERNAME=ph@phloc.com
- secure: "EQpJts6IvyBuRtYelNkIpcqrEfDUiwNPyxGF7qBWB2HMaQxEMXx1EfBR97CteAN9NufErht+M8W8Ju+7dv7MDzbCc4gMHciZ1i/y7rNuLw
QvdxDrgEf78N5JLobo00qR7prfGEItnA9+y6VTdvwBLzcuUK768LkKoJbxLXbDOduAOPDNvaHQv91Emy5yBImjVzN4LitHK+kTjrU8JOkwDHmoRqN3e6f
2deSUjrurmrwVSU0J1LDPePsdU4DB5Fh3OtXn8nvyAL+0bcMIAuRqAXS9PVZ81RPxD6frz8zpvngWnLOqzntK0vUfxPsvbUdU0br7z980QjpH3vwk8/c5
WVg23lByGfYVRHQO8FvoU3h9rwnGIWAFnN5qfXa8WD51K+P8kDjrBL2RaX+XpB8wghyZBGCxAiswVkjuZJXHhBBmA3aETSYyjya0UxBh/BkUIy5TfeSKl
4PA/ba1Mw1AXWNFpjfb2BrGylld76ItTn/TxJzCc3a0ytRodlslJCHocCjph8em2iz8iluo7Xsx0PfZsZrj4qbOzkZqGyDG1hLzri4wIz9feu+yu33Fbo
b8BI5Oq/W565Z0b9zQy8LONorT28s9KGLXRtZfn6e1Q8Valr8r2rr90uD5HJ6ZKSUmORlK9E49L3dKvn6b/3w0DoewoihH4ZqCmTvuVqJ7SAw="
install:
- mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V -U
cache:
directories:
- $HOME/.m2
branches:
only:
- master
jobs:
include:
- stage: test
jdk: openjdk8
script:
- mvn test -B
after_success:
- mvn deploy --settings travis-settings.xml -DskipTests=true -B -P travis-deploy
- stage: test
jdk: openjdk11
script:
- mvn test -B -P coverage
after_success:
- bash <(curl -s https://codecov.io/bash)
- stage: test
jdk: openjdk14
script:
- mvn test -B