ColorConsole/.travis.yml

20 lines
389 B
YAML
Raw Permalink Normal View History

2017-09-23 13:55:42 +02:00
# Use https://travis-ci.org/ for automatic testing
2016-05-03 21:20:11 +02:00
2017-09-23 13:55:42 +02:00
# speed up testing https://blog.travis-ci.com/2014-12-17-faster-builds-with-container-based-infrastructure/
2016-05-03 21:20:11 +02:00
sudo: false
# This is a java project
language: java
2019-05-02 11:26:56 +02:00
# Compile the project and run unit tests
2017-09-30 10:54:13 +02:00
script: mvn test -B
2016-05-03 21:20:11 +02:00
2017-09-30 10:54:13 +02:00
jdk:
- oraclejdk8
2019-05-02 11:26:56 +02:00
- openjdk11
# Cache Maven dependencies
cache:
directories:
- '$HOME/.m2/repository'