Search Gradle plugins

Version 0.1alpha3 (latest)

0.1alpha3

Created 19 May 2022.

Gradle plugin to track gradle project build insights.

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.alperbry.build-tracker") version "0.1alpha3"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.alperbry:build-tracker-plugin:0.1alpha3")
      }
    }
    
    apply(plugin = "io.github.alperbry.build-tracker")
  • Applying plugins to all subprojects .