搜索Gradle插件

版本 2.2.2 (最新版)

2.2.2

创建于 2015年4月7日。

这个插件版本将在JCenter永久重定向到Maven Central后不再可用,因为它只使用在JCenter中找到的依赖项。请参见以下博客文章获取详细信息:https://blog.gradle.org.cn/portal-jcenter-impact

使用 插件DSL

plugins {
  id("nebula.nebula-maven-distribute") version "2.2.2"
}

使用 旧版插件应用程序

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

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

使用 插件DSL

plugins {
  id "nebula.nebula-maven-distribute" version "2.2.2"
}

使用 旧版插件应用程序

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

apply plugin: "nebula.nebula-maven-distribute"

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