com.ryandens.javaagent-otel-modification
Owner: Ryan Dens
Enables easy modification of OpenTelemetry javaagent distributions with 3rd party extensions or auto-instrumentation modules
Sources: https://github.com/ryandens/javaagent-gradle-plugin
Version 0.7.0 (latest)
0.7.0
Created 15 October 2024.
Enables easy modification of OpenTelemetry javaagent distributions with 3rd party extensions or auto-instrumentation modules
Using the plugins DSL:
plugins {
id("com.ryandens.javaagent-otel-modification") version "0.7.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.ryandens:otel:0.7.0")
}
}
apply(plugin = "com.ryandens.javaagent-otel-modification")
Using the plugins DSL:
plugins {
id "com.ryandens.javaagent-otel-modification" version "0.7.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.ryandens:otel:0.7.0"
}
}
apply plugin: "com.ryandens.javaagent-otel-modification"