nebula.maven-resolved-dependencies-jar
所有者: Nebula Plugins
基于 nebula.maven-dependencies-jar 构建而成,用实际解析的版本替换动态版本
https://github.com/nebula-plugins/nebula-publishing-plugin
源代码:https://github.com/nebula-plugins/nebula-publishing-plugin.git
版本 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"