搜索Gradle插件

版本 2.2.1(最新版)

2.2.1

创建于 2015年4月2日。

由于JCenter成为永久重定向到Maven Central,此插件版本将不再解决,因为它只使用JCenter中找到的依赖项。有关详细信息,请参阅以下博客文章:https://blog.gradle.org.cn/portal-jcenter-impact

使用 插件DSL

plugins {
  id("nebula.nebula-integtest") version "2.2.1"
}

使用 旧版插件应用程序

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

apply(plugin = "nebula.nebula-integtest")

使用 插件DSL

plugins {
  id "nebula.nebula-integtest" version "2.2.1"
}

使用 旧版插件应用程序

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

apply plugin: "nebula.nebula-integtest"

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