8

如果我太愚蠢了,我很抱歉,但我无法让它工作......我在 AS 中有一个 Android 模块项目,我想上传到 JCenter - 使用来自JFrog的 gradle bintray 插件。我按照教程在 bintray 上创建存储库,最终得到了模块的以下 build.gradle:

apply plugin: 'com.android.library'
apply plugin: 'com.jfrog.bintray'
apply plugin: 'com.github.dcendents.android-maven'

Properties properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream())

bintray {
    user = properties.getProperty('bintray.user')
    key = properties.getProperty('bintray.apikey')

    configurations = ['published', 'archives']

    dryRun = false
    publish = true

    pkg {
        repo = 'maven'
        name = 'custom-searchable'

        desc = 'This repository contains a library that aims to provide a custom searchable interface for android applications'

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

        licenses = ['The Apache Software License, Version 2.0']
        labels = ['android', 'searchable', 'interface', 'layout']
        publicDownloadNumbers = true

        version {
            name = '1.0'
            desc = 'Bintray integration test'
            vcsTag = '1.0'
        }
    }
}

ext {
    bintrayRepo = 'maven'
    bintrayName = 'custom-searchable'

    publishedGroupId = 'br.com.edsilfer'
    libraryName = 'CustomSearchable'
    artifact = 'custom-searchable'

    libraryDescription = 'This repository contains a library that aims to provide a custom searchable interface for android applications'

    siteUrl = 'https://github.com/...'
    gitUrl = 'https://github.com/....git'

    libraryVersion = '1.0'

    developerId = '...'
    developerName = '...'
    developerEmail = '...'

    licenseName = 'The Apache Software License, Version 2.0'
    licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
    allLicenses = ["Apache-2.0"]
}


android {
    compileSdkVersion 22
    buildToolsVersion "22.0.1"

    defaultConfig {
        minSdkVersion 22
        targetSdkVersion 22
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:design:22.2.0'
    compile 'com.android.support:recyclerview-v7:21.0.3'
}

而这个项目:

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:1.2.3'
        classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.2'
        classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
    }
}

运行任务gradle bintrayUpload(成功完成)后,我在 bintray 中的存储库如下所示:

第一层次 当您打开未指定的文件夹时,您会发现:

在此处输入图像描述

所以问题!

  1. 为什么版本像未指定一样被上传?
  2. 我无法使用给定的组 id:artifact:version 编译我的项目,当尝试在 AS 上构建它时,它说它无法解析到工件的路径。

任何帮助将不胜感激!

4

1 回答 1

2

您使用的是 gradle 插件提供的标准配置,没有指定库版本。

我正在使用该出版物:

...
apply plugin: 'com.jfrog.bintray'
apply plugin: 'maven-publish'

...

bintray {
    ...
    publications = ['Publication']
    pkg {
        ...
    }
}

publishing {
    publications {
        Publication(MavenPublication) {
            artifact jar
            groupId 'com.lib'
            artifactId 'help-er'
            version '0.1'
        }
    }
}

如果你想使用配置检查这个问题:Publish on bintray using the gradle-bintray-plugin

于 2015-08-28T16:54:34.210 回答