只上传到 Jcenter 不能导入到 gradle
Just upload to Jcenter and can't import to gradle
我用了Gradle plugin dev to upload my plugin to jCenter。但是现在我不知道如何在 gradle.
中使用它
找不到类路径。我这样构建它:
groupId:artifactId:version
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.fuzz.skeleton:app:1.0.0.RELEASE'
}
}
我的项目可以找到here。
您必须请求将您的包包含在 JCenter 中。具体来说,您还没有完成 this process. Additionally, you'll want to request inclusion in the Gradle plugins repository so that your plugin will be available on the Gradle plugin portal.
的第 3 步
我用了Gradle plugin dev to upload my plugin to jCenter。但是现在我不知道如何在 gradle.
中使用它找不到类路径。我这样构建它:
groupId:artifactId:version
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.fuzz.skeleton:app:1.0.0.RELEASE'
}
}
我的项目可以找到here。
您必须请求将您的包包含在 JCenter 中。具体来说,您还没有完成 this process. Additionally, you'll want to request inclusion in the Gradle plugins repository so that your plugin will be available on the Gradle plugin portal.
的第 3 步