Search Gradle plugins

Version 1.1.1 (latest)

Created 18 June 2020.

Automates entrypoints

Using the plugins DSL:

plugins {
  id("com.github.fudge.autofabric") version "1.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.fudge:plugin:1.1.1")
  }
}

apply(plugin = "com.github.fudge.autofabric")

Using the plugins DSL:

plugins {
  id "com.github.fudge.autofabric" version "1.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.fudge:plugin:1.1.1"
  }
}

apply plugin: "com.github.fudge.autofabric"

Learn how to apply plugins to subprojects