Search Gradle plugins

Version 0.0.1

Created 12 May 2021.

A Gradle Plugin to Build Gradle Plugins

Using the plugins DSL:

plugins {
  id("com.medly.inception") version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.medly:inception:0.0.1")
  }
}

apply(plugin = "com.medly.inception")

Using the plugins DSL:

plugins {
  id "com.medly.inception" version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.medly:inception:0.0.1"
  }
}

apply plugin: "com.medly.inception"

Learn how to apply plugins to subprojects