I\'m new to Gradle and bintray. I want to publish this project so it is readily available to Maven and SBT users. I am not the original author of this package; it appears to
I ran into the same error. The following method (as described here) worked for me.
Add a task
task wrapper(type: Wrapper) { gradleVersion = '2.0' }
and run it once. Afterwards, start using gradlew instead of gradle
gradlew
gradle