vitro/.travis.yml

23 lines
364 B
YAML
Raw Normal View History

2016-05-27 12:06:43 +01:00
language: java
dist: trusty
2016-05-27 12:06:43 +01:00
sudo: false
2016-09-18 20:20:48 +01:00
jdk:
- openjdk8
2016-09-18 20:20:48 +01:00
- oraclejdk8
2016-05-27 12:06:43 +01:00
env:
# Give Maven 1GB of memory to work with
- MAVEN_OPTS=-Xmx1024M
cache:
directories:
- .autoconf
- $HOME/.m2
2016-05-27 12:06:43 +01:00
install:
- "echo 'Skipping install stage, dependencies will be downloaded during build and test stages.'"
script:
- "mvn clean package -Dmaven.test.skip=false"