Search Gradle plugins

Version 0.1.5 (latest)

Created 21 October 2023.

Small plugin to verify thresholds from the Compose metrics report.

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.oas004.metrics:verifyComposeMetricsPlugin:0.1.5")
  }
}

apply(plugin = "io.github.oas004.metrics")

Using the plugins DSL:

plugins {
  id "io.github.oas004.metrics" version "0.1.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.oas004.metrics:verifyComposeMetricsPlugin:0.1.5"
  }
}

apply plugin: "io.github.oas004.metrics"

Learn how to apply plugins to subprojects