1

Android aarをbintrayにアップロードしたいのですが、これを参照しますが、cmdを実行する#gradlew bintrayUploadと、cmdはエラーメッセージを表示し、私のgradleファイルは次のようになります。

bintray {
    user = properties.getProperty('bintray.user')
    key = properties.getProperty('bintray.apikey')
    configurations = ['published', 'archives']

    dryRun = false
    publish = true

    pkg {
        repo = 'maven'
        name = 'ActionAnimatorSet'

        desc = 'An animator operation set on Android'

        websiteUrl = 'https://github.com/paulyung541/ActionAnimatorSet'
        issueTrackerUrl = 'https://github.com/paulyung541/ActionAnimatorSet/issues'
        vcsUrl = 'https://github.com/paulyung541/ActionAnimatorSet.git'

        licenses = ['GNU GENERAL PUBLIC LICENSE, Version 3.0']
        labels = ['Android', 'ObjectAnimator', 'AnimatorSet']
        publicDownloadNumbers = true

        version {
            name = '1.0.0'
            desc = 'first version'
            vcsTag = '1.0'
        }
    }
}

publishing {
    publications {
        Publication(MavenPublication) {
            groupId 'com.paulyung'
            artifactId 'actionanimset'
            version '1.0.0'
        }
    }
}

私はすでにbintrayでmavenをセットアップしていますが、cmdは常にmavenを持っていないことを指摘しています。

4

1 に答える 1

1

次のスレッドのいずれかを参照してください: HTTP/1.1 401 Unauthorized when uploading binary on bintray Bintray を使用して jCenter で Android Studio ライブラリを公開する際のトラブル

userOrg パラメーターが欠落している可能性があります。Maven リポジトリが組織またはユーザーの下にあるかどうかによって異なります。

于 2016-11-01T09:58:47.907 に答える