Search Gradle plugins

Version 0.1.3 (latest)

Created 16 July 2023.

Best way to structure your Gradle Project

Using the plugins DSL:

plugins {
  id("tools.forma.android") version "0.1.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("tools.forma:android:0.1.3")
  }
}

apply(plugin = "tools.forma.android")

Using the plugins DSL:

plugins {
  id "tools.forma.android" version "0.1.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "tools.forma:android:0.1.3"
  }
}

apply plugin: "tools.forma.android"

Learn how to apply plugins to subprojects