搜索Gradle插件

使用 插件 DSL

plugins {
  id("io.opentelemetry.instrumentation.muzzle-check") version "2.7.0-alpha"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.opentelemetry.instrumentation:gradle-plugins:2.7.0-alpha")
  }
}

apply(plugin = "io.opentelemetry.instrumentation.muzzle-check")

使用 插件 DSL

plugins {
  id "io.opentelemetry.instrumentation.muzzle-check" version "2.7.0-alpha"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.opentelemetry.instrumentation:gradle-plugins:2.7.0-alpha"
  }
}

apply plugin: "io.opentelemetry.instrumentation.muzzle-check"

了解如何将插件应用到子项目