Skip to content
Snippets Groups Projects
Unverified Commit bd1a095e authored by Jeffrey Phillips Freeman's avatar Jeffrey Phillips Freeman :boom:
Browse files

fix: travis now uses maven 3.5.0.

parent be56e0f9
No related branches found
No related tags found
No related merge requests found
...@@ -419,6 +419,11 @@ matrix: ...@@ -419,6 +419,11 @@ matrix:
# - ENV_CXX_FLAGS="-Wno-c99-extensions" # - ENV_CXX_FLAGS="-Wno-c99-extensions"
before_install: before_install:
#install maven 3.5.0
- export M2_HOME=$HOME/apache-maven-3.5.0
- if [ ! -d $M2_HOME/bin ]; then curl https://archive.apache.org/dist/maven/maven-3/3.5.0/binaries/apache-maven-3.5.0-bin.tar.gz | tar zxf - -C $HOME; fi
- export PATH=$M2_HOME/bin:$PATH
# Install dependencies # Install dependencies
- sudo apt-get install jq - sudo apt-get install jq
- wget -O ~/codacy-coverage-reporter-assembly-latest.jar $(curl https://api.github.com/repos/codacy/codacy-coverage-reporter/releases/latest | jq -r .assets[0].browser_download_url) - wget -O ~/codacy-coverage-reporter-assembly-latest.jar $(curl https://api.github.com/repos/codacy/codacy-coverage-reporter/releases/latest | jq -r .assets[0].browser_download_url)
......
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
* Updated parent pon to v6. * Updated parent pon to v6.
* createProgram had the wrong signature producing a unsatisfied link exception that is now fixed. * createProgram had the wrong signature producing a unsatisfied link exception that is now fixed.
* Build now requires version 3.5.0 of maven due to changes in surefire plugin.
## 1.4.1 ## 1.4.1
......
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
<packaging>jar</packaging> <packaging>jar</packaging>
<prerequisites> <prerequisites>
<maven>3.0.4</maven> <maven>3.5.0</maven>
</prerequisites> </prerequisites>
<properties> <properties>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment