0

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.

Ilya Gazman
  • 31,250
  • 24
  • 137
  • 216

1 Answers1

2

You have to request that your package be included in JCenter. Specifically, you have not accomplished step 3 of 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.

Mark Vieira
  • 13,198
  • 4
  • 46
  • 39