Search Gradle plugins

Version 0.0.1 (latest)

Created 26 July 2019.

Auto generate mvp code!

Using the plugins DSL:

plugins {
  id("com.mrcd.auto.mvp") version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.mrcd:auto-mvp:0.0.1")
  }
}

apply(plugin = "com.mrcd.auto.mvp")

Using the plugins DSL:

plugins {
  id "com.mrcd.auto.mvp" version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.mrcd:auto-mvp:0.0.1"
  }
}

apply plugin: "com.mrcd.auto.mvp"

Learn how to apply plugins to subprojects