搜索Gradle插件

使用plugins DSL

plugins {
  id("nebula.integtest") version "9.6.3"
}

使用传统插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.netflix.nebula:nebula-project-plugin:9.6.3")
  }
}

apply(plugin = "nebula.integtest")

使用plugins DSL

plugins {
  id "nebula.integtest" version "9.6.3"
}

使用传统插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.netflix.nebula:nebula-project-plugin:9.6.3"
  }
}

apply plugin: "nebula.integtest"

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