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.3
0.1.3
Created 23 April 2023.
Small plugin to verify thresholds from the Compose metrics report.
Using the plugins DSL:
plugins {
id("io.github.oas004.metrics") version "0.1.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.oas004.metrics:verifyComposeMetricsPlugin:0.1.3")
}
}
apply(plugin = "io.github.oas004.metrics")
Using the plugins DSL:
plugins {
id "io.github.oas004.metrics" version "0.1.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.oas004.metrics:verifyComposeMetricsPlugin:0.1.3"
}
}
apply plugin: "io.github.oas004.metrics"