- Introduce Maven pom.xml. - Moved Asciidoctor files to src/main/asciidoc. - Moved notice.txt etc. to src/main/resources. - Add logback.xml - Update Makefile to use maven and pick build profiles. - Update template.mf to pick up versions in pom.xml - Add build matrix for spring versions to .travis.yml - Use container based travis infrastructure. - Update readme. Original pull request: #167.
18 lines
309 B
YAML
18 lines
309 B
YAML
language: java
|
|
jdk:
|
|
- oraclejdk7
|
|
- oraclejdk8
|
|
env:
|
|
matrix:
|
|
- PROFILE=ci
|
|
- PROFILE=spring41-next
|
|
- PROFILE=spring42
|
|
- PROFILE=spring42-next
|
|
- PROFILE=spring43-next
|
|
cache:
|
|
directories:
|
|
- $HOME/.m2
|
|
sudo: false
|
|
install: true
|
|
script: travis_wait make test SPRING_PROFILE=${PROFILE}
|