Files
spring-data-examples/.travis.yml
Mark Paluch b68a4459bf #215 - Reduce log output in TravisCI build.
TravisCI build produces 4MB+ of log output which causes TravisCI to kill the build. Run Maven on TravisCI in batch-mode and redirect test output to file to avoid long download progress output.
2016-11-23 09:56:49 +01:00

19 lines
240 B
YAML

language: java
jdk:
- oraclejdk8
services:
- redis-server
- cassandra
cache:
directories:
- $HOME/.m2
sudo: false
install: true
script: "mvn clean dependency:list test -Dsort -Dmaven.test.redirectTestOutputToFile=true -B"