com.yo1000.newrelic-instrumentation
Owner: YO!CHI KIKUCHI
Plugin that automatically creates XML file for NewRelic custom instrumentation
https://github.com/yo1000/newrelic-instrumentation-gradle-plugin
Sources: https://github.com/yo1000/newrelic-instrumentation-gradle-plugin
Version 1.0.3 (latest)
1.0.3
Created 20 September 2024.
Plugin that automatically creates XML file for NewRelic custom instrumentation
Using the plugins DSL:
plugins {
id("com.yo1000.newrelic-instrumentation") version "1.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.yo1000:newrelic-instrumentation-gradle-plugin:1.0.3")
}
}
apply(plugin = "com.yo1000.newrelic-instrumentation")
Using the plugins DSL:
plugins {
id "com.yo1000.newrelic-instrumentation" version "1.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.yo1000:newrelic-instrumentation-gradle-plugin:1.0.3"
}
}
apply plugin: "com.yo1000.newrelic-instrumentation"