summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 597724a371453cbae1f326213e297c053027989d (plain)
1
2
3
4
5
6
7
8
language: java

before_script:
 - if find . -name "*.java" | xargs grep "System.out.print"; then echo "Found usage of direct print to console. Failing build."; exit 1; fi;

jdk:
 - openjdk8
 - oraclejdk8