io.opentelemetry.instrumentation.muzzle-check
Owner: Nikita Salnikov-Tarnovski
https://github.com/open-telemetry/opentelemetry-java-instrumentation/blob/main/docs/contributing/muzzle.md
Sources: https://github.com/open-telemetry/opentelemetry-java-instrumentation
Version 1.9.1-alpha
Created 01 December 2021.
https://github.com/open-telemetry/opentelemetry-java-instrumentation/blob/main/docs/contributing/muzzle.md
Add this plugin to your build using the plugins DSL:
plugins {
id("io.opentelemetry.instrumentation.muzzle-check") version "1.9.1-alpha"
}
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.opentelemetry.instrumentation.muzzle-check:io.opentelemetry.instrumentation.muzzle-check.gradle.plugin:1.9.1-alpha") }
It can then be applied in the precompiled script plugin:plugins { id("io.opentelemetry.instrumentation.muzzle-check") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.opentelemetry.instrumentation.muzzle-check:io.opentelemetry.instrumentation.muzzle-check.gradle.plugin:1.9.1-alpha") } } apply(plugin = "io.opentelemetry.instrumentation.muzzle-check")
- Applying plugins to all subprojects .