Search Gradle plugins

Version 0.0.1

Created 02 October 2020.

Best way to structure your Android Project

Using the plugins DSL:

plugins {
  id("com.stepango.forma") version "0.0.1"
}

Using legacy plugin application:

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

apply(plugin = "com.stepango.forma")

Using the plugins DSL:

plugins {
  id "com.stepango.forma" version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.stepango.forma:plugin:0.0.1"
  }
}

apply plugin: "com.stepango.forma"

Learn how to apply plugins to subprojects