Не удалось получить неизвестное свойство publishableFiles - PullRequest
0 голосов
/ 09 мая 2020

Я получаю следующую ошибку при попытке publi sh в bintray.

FAILURE: Build completed with 2 failures.

1: Task failed with an exception.
-----------
* What went wrong:
Execution failed for task ':bintrayUpload'.
> Could not get unknown property 'publishableFiles' for object of type org.gradle.api.publish.maven.internal.publication.DefaultMavenPublication.

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
==============================================================================

2: Task failed with an exception.
-----------
* What went wrong:
Execution failed for task ':bintrayPublish'.
> Could not publish 'messai/maven/kyuga/0.0.6': HTTP/1.1 404 Not Found [message:Version '0.0.6' was not found]

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
==============================================================================

* Get more help at https://help.gradle.org

BUILD FAILED in 2s

Мой проект является kotlin многоплатформенным, и ниже приведены настройки publi sh в gradle:

publishing {
    repositories {
        maven {
            url  = project.projectBintrayRepo
        }
    }

    publications {
        mavenProject(MavenPublication) {
            groupId project.groupId
            artifactId project.projectBintrayArtifactName
            version project.kyugaVersion
            withPom(pom)
        }
    }
}

Пожалуйста, помогите

1 Ответ

1 голос
/ 10 мая 2020
  1. Что-то в вашем проекте пытается получить свойство publishableFiles из MavenPublication. Как указывает ошибка, такого свойства не существует.
  2. Похоже, вы пытаетесь опубликовать sh в несуществующем репозитории, отсюда и 404 Not Found. Вам необходимо опубликовать sh в существующем репозитории.
...