搜索 Gradle 插件

版本 4.2.2 (最新)

4.2.2

创建于 2015 年 10 月 20 日。

当 JCenter 永久重定向到 Maven Central 时,此插件版本将不再解析,因为它只使用在 JCenter 中可找到的依赖项。有关详细信息,请参阅以下博客文章:https://blog.gradle.org.cn/portal-jcenter-impact 基于nebula.maven-dependencies-jar构建,用实际解析的版本替换动态版本

使用 插件 DSL

plugins {
  id("nebula.maven-resolved-dependencies-jar") version "4.2.2"
}

使用 旧版插件应用

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

apply(plugin = "nebula.maven-resolved-dependencies-jar")

使用 插件 DSL

plugins {
  id "nebula.maven-resolved-dependencies-jar" version "4.2.2"
}

使用 旧版插件应用

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

apply plugin: "nebula.maven-resolved-dependencies-jar"

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