io.github.oas004.metrics
Owner: Odin Asbjørnsen
Small plugin to verify thresholds from the Compose metrics report.
https://github.com/oas004/VerifyComposeMetricsPlugin
Sources: https://github.com/oas004/VerifyComposeMetricsPlugin.git
Version 0.1.6 (latest)
0.1.6
Created 07 June 2024.
Small plugin to verify thresholds from the Compose metrics report.
Using the plugins DSL:
plugins {
id("io.github.oas004.metrics") version "0.1.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.oas004.metrics:verifyComposeMetricsPlugin:0.1.6")
}
}
apply(plugin = "io.github.oas004.metrics")
Using the plugins DSL:
plugins {
id "io.github.oas004.metrics" version "0.1.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.oas004.metrics:verifyComposeMetricsPlugin:0.1.6"
}
}
apply plugin: "io.github.oas004.metrics"