ksoichiro / gradle-web-resource-plugin

Gradle plugin to use CoffeeScript, LESS and Bower libraries without Node.js/npm.
Apache License 2.0
23 stars 5 forks source link

Update .travis.yml #11

Closed sratatata closed 8 years ago

sratatata commented 8 years ago

I found that in Travis you are building with:

$ ./gradlew clean build check uploadArchives --full-stacktrace

i think that check is not necessary, because its only validating build.gradle file. And its done before clean.

Would be enough:

$ ./gradlew clean build uploadArchives --full-stacktrace
ksoichiro commented 8 years ago

Thanks! You're right. build task depends on check, so check is redundant in this case.