com.yo1000.newrelic-instrumentation
所有者: YO!CHI KIKUCHI
自动为 NewRelic 自定义仪表创建 XML 文件的插件
https://github.com/yo1000/newrelic-instrumentation-gradle-plugin
源码: https://github.com/yo1000/newrelic-instrumentation-gradle-plugin
使用 插件 DSL
plugins {
id("com.yo1000.newrelic-instrumentation") version "1.0.2"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.yo1000:newrelic-instrumentation-gradle-plugin:1.0.2")
}
}
apply(plugin = "com.yo1000.newrelic-instrumentation")
使用 插件 DSL
plugins {
id "com.yo1000.newrelic-instrumentation" version "1.0.2"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.yo1000:newrelic-instrumentation-gradle-plugin:1.0.2"
}
}
apply plugin: "com.yo1000.newrelic-instrumentation"