Search Gradle plugins

Version 0.1.6 (latest)

0.1.6

Created 07 June 2024.

Small plugin to verify thresholds from the Compose metrics report.

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.oas004.metrics") version "0.1.6"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.oas004.metrics:verifyComposeMetricsPlugin:0.1.6")
      }
    }
    
    apply(plugin = "io.github.oas004.metrics")
  • Applying plugins to all subprojects .