Загрузка в bintray молча завершается сбоем для AAR - PullRequest
0 голосов
/ 24 августа 2018

Я использую этот пример для Android, но мои собственные данные заменяют примеры

Когда я выполняю задачу bintrayUpload

, я получаю следующий журналНесмотря на успех, на bintray нет новых файлов.

Как я могу отладить это и выяснить, почему это не удалось?

    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 Ответ

0 голосов
/ 04 сентября 2018

Задачи Gradle, запущенные в потоке демонов, отключите поток демонов, используя файл gradle.properties, затем попробуйте --debug.

org.gradle.daemon=true
...