Add initial travis configuration

This commit is contained in:
Graham Triggs 2016-05-27 12:06:43 +01:00
parent 1ee0ef72a8
commit 607ce353ce

12
.travis.yml Normal file
View file

@ -0,0 +1,12 @@
language: java
sudo: false
env:
# Give Maven 1GB of memory to work with
- MAVEN_OPTS=-Xmx1024M
install:
- "echo 'Skipping install stage, dependencies will be downloaded during build and test stages.'"
script:
- "mvn clean package -Dmaven.test.skip=false"