Search Gradle plugins

Version 0.0.2

Created 04 November 2020.

Best way to structure your Android Project

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "com.stepango.forma"

Learn how to apply plugins to subprojects