Search Gradle plugins

Version 1.06.0

Created 25 April 2020.

A plugin for your Android project that gives you an additional information about the Build and the Builder.

Using the plugins DSL:

plugins {
  id("com.github.tsvetilian-ty.build-extension") version "1.06.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.tsvetilian-ty:build-extension:1.06.0")
  }
}

apply(plugin = "com.github.tsvetilian-ty.build-extension")

Using the plugins DSL:

plugins {
  id "com.github.tsvetilian-ty.build-extension" version "1.06.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.tsvetilian-ty:build-extension:1.06.0"
  }
}

apply plugin: "com.github.tsvetilian-ty.build-extension"

Learn how to apply plugins to subprojects