我使用Gradle plugin dev将我的插件上传到jCenter。但现在我不知道如何在gradle中使用它。
找不到类路径。我这样构建它:
的groupId:artifactId的:版本
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.fuzz.skeleton:app:1.0.0.RELEASE'
}
}
我的项目可以找到here。
答案 0 :(得分:2)
您必须请求将您的包包含在JCenter中。具体来说,您还没有完成this process的第3步。此外,您还需要请求加入Gradle plugins repository,以便您的插件可在Gradle plugin portal上使用。