Я схожу с ума .... Я пытаюсь загрузить свой модуль kotlin в JCenter, используя Bintray. Я использую скрипт gradle, который я нашел в интернете, это моя ошибка
Не удалось выполнить задачу ': bintrayPubli sh'. Не удалось опубликовать sh 'drivemart / DriveSmart_SDK / com.drivesmartsdk / 0.0.1': HTTP / 1.1 401 Не авторизован [сообщение: для этого ресурса требуется аутентификация]
Проект Gradle
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
classpath "com.github.dcendents:android-maven-gradle-plugin:2.1"
Модуль Gradle
apply plugin: 'com.jfrog.bintray'
apply plugin: 'com.github.dcendents.android-maven'
ext {
bintrayRepo = 'DriveSmart_SDK' // Repo name in bintray dashboard
bintrayName = 'com.drivesmartsdk' // package name of the bintray repo
userOrganisation = 'drivesmart'
publishedGroupId = 'com.drivesmartsdk' // this is the ID we want to see in implementation line
libraryName = 'drivesmartsdk' // this is the module name of library
artifact = 'drivesmartsdk' // this is the artifact we want to see in implementation line
libraryDescription = 'SDK to collect data' // description of library
siteUrl = '' // git repo url
gitUrl = '' // git repo vcs url
libraryVersion = '0.0.1' // library version
developerId = 'andreslachica10' // This is your bintray username
developerName = '' // Developer's name
developerEmail = '' // Developer's email
licenseName = 'The Apache Software License, Version 2.0' // for example, The Apache Software License, Version 2.0
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt' // for example, http://www.apache.org/licenses/LICENSE-2.0.txt
allLicenses = ["Apache-2.0"] // array of licenses, for example, ["Apache-2.0"]
}
Моя организация