Skip to content
Snippets Groups Projects
.travis.yml 326 B
Newer Older
# more info here about TravisCI and Java projects
# http://docs.travis-ci.com/user/languages/java/

language: java

jdk:
  - oraclejdk7
  - openjdk7  
  
install: mvn install -q -DskipTests=true

script: mvn test -q

# Services to start for tests.
services:
  - mongodb


# Use the Container based infrastructure.
sudo: false