Skip to content
Francisco Zuccalá edited this page Jan 30, 2018 · 2 revisions

Inhibitor-plugin Wiki!

The inhibitor-plugin is a plugin that allows your project using Gradle, to use a Github repository as a nexus to upload your dependencies

Adding it

It's really simple, first, you will need a clean Github repository to use as Nexus and it should look like this Github repository. After that you can follow the next steps:

  • Add the Jitpack repository and inhibitor-plugin dependency in your root build.gradle inside your buildscript
     repositories{
          maven { url 'https://jitpack.io' }
     }
     dependencies {
         classpath 'com.github.franciscozuccala:inhibitor-plugin:X.Y.Z'
     }
  • After that, apply the plugin
    apply plugin: 'inhibitor'
    
  • Then just configure the tasks you want to use and done!. For more info got to Tasks
Clone this wiki locally