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.config") version "0.1.3"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "tools.forma.config"

Learn how to apply plugins to subprojects