Skip to content

Commit

Permalink
Use gradle wrapper instead of travis ci's inbuilt gradle version. (#706)
Browse files Browse the repository at this point in the history
At the moment travis will always use its pre installed gradle version what leads to unpredictable build behaviour as the version can change at any time. As this project has already defined a gradle wrapper the CI should use it.
  • Loading branch information
felixklauke authored and dmulloy2 committed Oct 16, 2019
1 parent b5cff49 commit 4c43f12
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .travis.yml
@@ -1,11 +1,13 @@
language: java
jdk:
- openjdk8
script: gradle clean compileJava compileTestJava test
script:
- chmod +x ./gradlew
- ./gradlew clean compileJava compileTestJava test
install: true
notifications:
email:
recipients:
- "dmulloy2@live.com"
on_success: change
on_failure: always
on_failure: always

0 comments on commit 4c43f12

Please sign in to comment.