Gradle无法在bintray上找到我的.jar

时间:2016-08-04 12:50:04

标签: android maven jar bintray

我刚刚通过Bintray将我的库添加到我的maven存储库,但是当我尝试在项目中添加依赖项时,Gradle无法找到.jar。

Error:Could not find mylib.jar      (com.test.mylib:mylib:1.0.0).
Searched in the following locations:
https://dl.bintray.com/pseudo/maven/com/test/mylib/mylib/1.0.0/mylib-1.0.0.jar

问题只是jar的名称,因为我的存储库中有一个mylib-1.0.0-sources.jar。那么我该如何改变这条道路呢?

感谢。

注意:我在build.gradle中添加了maven url。

我按照本教程上传了我的库:

https://inthecheesefactory.com/blog/how-to-upload-library-to-jcenter-maven-central-as-dependency/en

我的问题出现在第5部分的末尾,当我添加依赖项时如下:

repositories {
   maven {
       url 'https://dl.bintray.com/nuuneoi/maven/'
   }
}

dependencies {
    compile 'com.inthecheesefactory.thecheeselibrary:fb-like:0.9.3'
}

1 个答案:

答案 0 :(得分:0)

请尝试

compile 'com.inthecheesefactory.thecheeselibrary:fb-like:0.9.3@aar'