.travis.yml 476 Bytes
Newer Older
1
sudo: false
Florian Schmaus's avatar
Florian Schmaus committed
2
language: java
3 4
jdk:
  - oraclejdk8
5
env:
6 7 8 9 10 11 12 13
  global:
    - ANT_OPTS='-Xmx1G'
  matrix:
    - SCRIPT="ant -Dhalt.on.plugin.error=true -f build/build.xml clean compile"
    - SCRIPT="ant -Dhalt.on.plugin.error=true -f build/build.xml clean test"
    - SCRIPT="ant -Dhalt.on.plugin.error=true -f build/build.xml clean openfire"
    - SCRIPT="ant -Dhalt.on.plugin.error=true -f build/build.xml clean plugins"
    - SCRIPT="mvn clean verify"
14 15
script: $SCRIPT
install: true