I used Gradle plugin dev to upload my plugin to jCenter. But now I do not know how to use it in gradle.
It fail finding the classpath. I build it like this:
groupId:artifactId:version
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.fuzz.skeleton:app:1.0.0.RELEASE'
}
}
My project can be found here.