-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
14 lines (14 loc) · 721 Bytes
/
.travis.yml
File metadata and controls
14 lines (14 loc) · 721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---
language: java
# https://stackoverflow.com/questions/14694139/how-to-resolve-dependencies-between-modules-within-multi-module-project
install: mvn compile org.apache.maven.plugins:maven-dependency-plugin:2.10:go-offline --batch-mode --show-version
script:
# add our bin folder to the PATH so our fake ping will be picked up when running under Travis CI
# Inspiration: https://github.com/nono/cozy-desktop/commit/26ab9df277d1cbf781e9e476d022988ab0113154
- export PATH="bin:$PATH"
# We can't add '--offline' below because the dependency plugin misses some of the dependencies
- mvn clean verify --batch-mode
# https://docs.travis-ci.com/user/migrating-from-legacy/
sudo: false
jdk:
- openjdk6