How to use gradle plugin globally from GitHub repository?

Viewed 22

I trying to access the GitHub repository like below

pluginManagement{
repositories {
    github {
        url "https://github.com/plugin"
    }
}

}

instead of referring to the plugin locally. Is there any way to do it? I was looking at this post here someone mentioned about JitPack but this is paid service.

0 Answers
Related