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)
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:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("io.github.oas004.metrics:io.github.oas004.metrics.gradle.plugin:0.1.6") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.oas004.metrics") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.oas004.metrics:io.github.oas004.metrics.gradle.plugin:0.1.6") } } apply(plugin = "io.github.oas004.metrics")
- Applying plugins to all subprojects .