Skip to content

Commit

Permalink
Make it smarter
Browse files Browse the repository at this point in the history
  • Loading branch information
szabowexler committed Apr 5, 2018
1 parent 14348b2 commit 0b235a0
Showing 1 changed file with 30 additions and 9 deletions.
39 changes: 30 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,30 @@
language: java
jdk:
- oraclejdk8

sudo: false

cache:
directories:
- $HOME/.m2
{
"language": "java",
"jdk": "oraclejdk8",
"git": {
"depth": 100
},
"sudo": false,
"addons": {
"apt": {
"packages": [
"oracle-java8-installer"
]
}
},
"before_install": [
"wget https://archive.apache.org/dist/maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.zip",
"unzip -qq apache-maven-3.3.9-bin.zip",
"export M2_HOME=$PWD/apache-maven-3.3.9",
"export PATH=$M2_HOME/bin:$PATH"
],
"script": "mvn -B -q clean install",
"cache": {
"directories": [
"$HOME/.m2"
]
},
"os": "linux",
"group": "stable",
"dist": "trusty"
}

0 comments on commit 0b235a0

Please sign in to comment.