Upload to bintray silently fails for AAR

Viewed 154

I'm using this example for android, but with my own details replacing the example ones

When I perform the task bintrayUpload

I get the following log, even though it say success, there are no new files on bintray.

How can I debug this and find out why it failed?

    17:34:07: Executing task 'bintrayUpload'...

Executing tasks: [bintrayUpload]

Configuration on demand is an incubating feature.
Configuration(s) specified but the install task does not exist in project :components.
:components:bintrayUpload: file /Users/x/Dropbox/codes/androids/x/android/android/x-components/components/build/outputs/aar/components-release.aar.asc could not be found.
:components:bintrayUpload: file /Users/x/Dropbox/codes/androids/x/android/android/x/components/build/libs/components-0.2.6-javadoc.jar.asc could not be found.
:components:bintrayUpload: file /Users/x/Dropbox/codes/androids/x/android/android/x-components/components/build/libs/components-0.2.6-sources.jar.asc could not be found.
:components:bintrayUpload: file /Users/x/Dropbox/codes/androids/x/android/android/nx-components/components/build/outputs/aar/components-release.aar.asc could not be found.
:components:bintrayUpload: file /Users/x/Dropbox/codes/androids/x/android/android/x-components/components/build/libs/components-0.2.6-javadoc.jar.asc could not be found.
:components:bintrayUpload: file /Users/x/Dropbox/codes/androids/x/x/x/x-components/components/build/libs/components-0.2.6-sources.jar.asc could not be found.
:components:bintrayUpload
Uploading to https://api.bintray.com/content/true/x/components/0.2.6/x/x/x/components/components/0.2.6/components-0.2.6.aar...
Uploading to https://api.bintray.com/content/true/x/x/0.2.6/x/x/x/components/components/0.2.6/components-0.2.6-javadoc.jar...
Uploading to https://api.bintray.com/content/true/x/components/0.2.6/x/x/x/components/components/0.2.6/components-0.2.6-sources.jar...
Uploading to https://api.bintray.com/content/true/x/x/0.2.6/uk/x/x/x/components/0.2.6/components-0.2.6.aar...
Uploading to https://api.bintray.com/content/true/x/components/0.2.6/x/x/x/components/components/0.2.6/components-0.2.6.pom...
:bintrayPublish

BUILD SUCCESSFUL in 1s
2 actionable tasks: 2 executed
17:34:09: Task execution finished 'bintrayUpload'.
1 Answers

Gradle tasks run on daemon thread disable daemon thread using in gradle.properties file then try with --debug.

org.gradle.daemon=true
Related