bintray / gradle-bintray-plugin

Apache License 2.0
1.28k stars 194 forks source link

upload fails with "Failed to resolve package name" (daemon caching issues?) #107

Open jberkel opened 8 years ago

jberkel commented 8 years ago

Gradle 2.11, bintray plugin 1.6

Execution failed for task ':bintrayUpload'.
> Could not upload to 'https://api.bintray.com/content/jberkel/maven/foo/0.0.1/foo/bar/baz/0.0.1/baz-0.0.1.jar': HTTP/1.1 400 Bad Request [message:Failed to resolve package name]
ypresto commented 8 years ago

This also happens when uploading multiple NEW artifacts with bintray-release plugin by single gradle command (./gradlew module1:bintrayUpload module2:bintrayUpload).

ancho commented 8 years ago

Can confirm it too. Stopping the daemon and rerun the task helps.

gradle --stop; gradle clean bU

jeduardocosta commented 8 years ago

Can confirm it too. Stopping the daemon and rerun the task helps.

gradle --stop; gradle clean bU

This worked for me. Thanks.

DovSnier commented 7 years ago

Now I have this problem, have you solved it?