Search Gradle plugins

Version 1.2 (latest)

1.2

Created 27 January 2022.

Deploy mass depositories easily and consistently across projects

Using the plugins DSL:

plugins {
  id("io.github.zhufucdev.massdep") version "1.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.zhufucdev.massdep:MassDep:1.2")
  }
}

apply(plugin = "io.github.zhufucdev.massdep")

Using the plugins DSL:

plugins {
  id "io.github.zhufucdev.massdep" version "1.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.zhufucdev.massdep:MassDep:1.2"
  }
}

apply plugin: "io.github.zhufucdev.massdep"

Learn how to apply plugins to subprojects