nebula.metrics.init-plugin
Owner: Nebula Plugins
Gradle Metrics plugin: Collects gradle metrics and publishes to ElasticSearch HTTP/Splunk/REST endpoints
https://github.com/nebula-plugins/gradle-metrics-plugin
Sources: https://github.com/nebula-plugins/gradle-metrics-plugin.git
Version 10.1.8 (latest)
Created 14 October 2020.
Gradle Metrics plugin: Collects gradle metrics and publishes to ElasticSearch HTTP/Splunk/REST endpoints
Add this plugin to your build using the plugins DSL:
plugins {
id("nebula.metrics.init-plugin") version "10.1.8"
}
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("nebula.metrics.init-plugin:nebula.metrics.init-plugin.gradle.plugin:10.1.8") }
It can then be applied in the precompiled script plugin:plugins { id("nebula.metrics.init-plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("nebula.metrics.init-plugin:nebula.metrics.init-plugin.gradle.plugin:10.1.8") } } apply(plugin = "nebula.metrics.init-plugin")
- Applying plugins to all subprojects .