搜索 Gradle 插件

nebula.nebula-plugin

所有者: Nebula 插件

用于插件,对 nebula-plugins 有强烈观点的插件

https://github.com/nebula-plugins/nebula-plugin-plugin

版本 2.2.0 (最新)

2.2.0

创建于 2015 年 1 月 30 日。

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

使用 插件 DSL

plugins {
  id("nebula.nebula-plugin") version "2.2.0"
}

使用 旧插件应用

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

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

使用 插件 DSL

plugins {
  id "nebula.nebula-plugin" version "2.2.0"
}

使用 旧插件应用

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

apply plugin: "nebula.nebula-plugin"

学习如何将插件应用于子项目