Remove duplicative work from the builds in Travis

This commit is contained in:
R. Tyler Croy 2015-07-04 14:31:44 -07:00
parent 39db2912ad
commit 8c7046aa44
No known key found for this signature in database
GPG Key ID: 1426C7DC3F51E16F
1 changed files with 7 additions and 1 deletions

View File

@ -4,8 +4,14 @@ jdk:
- oraclejdk7
- oraclejdk8
script:
# Using 'install' to run the clean to avoid Travis automatically calling
# `./gradlew assemble and duplicating my work
install:
- ./gradlew clean
# Invoke our default tasks, whatever is defined as important in the
# build.gradle file
script:
- ./gradlew
env: