Search Gradle plugins

Version 0.0.5 (latest)

Created 03 January 2024.

Configures all Android modules, the Maven release and the Versions plugin

Using the plugins DSL:

plugins {
  id("xyz.tynn.convention.project") version "0.0.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("xyz.tynn.buildsrc:convention:0.0.5")
  }
}

apply(plugin = "xyz.tynn.convention.project")

Using the plugins DSL:

plugins {
  id "xyz.tynn.convention.project" version "0.0.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "xyz.tynn.buildsrc:convention:0.0.5"
  }
}

apply plugin: "xyz.tynn.convention.project"

Learn how to apply plugins to subprojects