Skip to content

Commit

Permalink
Add step to install latest Maven version in Travis CI
Browse files Browse the repository at this point in the history
  • Loading branch information
astefanutti committed Jan 19, 2016
1 parent 54c8f93 commit 5d07a22
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ branches:
only:
- master

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

install:
- mvn -B clean install -Dmaven.test.skip.exec

Expand Down

0 comments on commit 5d07a22

Please sign in to comment.