Search Gradle plugins

Version 0.6.0 (latest)

Created 03 February 2024.

Conventions configuration for fast module

Using the plugins DSL:

plugins {
  id("io.github.tozydev.fast-module") version "0.6.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.tozydev:fast-module-gradle-plugin:0.6.0")
  }
}

apply(plugin = "io.github.tozydev.fast-module")

Using the plugins DSL:

plugins {
  id "io.github.tozydev.fast-module" version "0.6.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.tozydev:fast-module-gradle-plugin:0.6.0"
  }
}

apply plugin: "io.github.tozydev.fast-module"

Learn how to apply plugins to subprojects