搜索Gradle插件

nebula.maven-dependencies-jar

所有者: Nebula Plugins

添加component.jar,大多数情况下用来当另一个插件干扰nebula.maven-dependencies的运行时

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 添加component.jar,大多数情况下用来当另一个插件干扰nebula.maven-dependencies的运行时

使用 插件 DSL

plugins {
  id("nebula.maven-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-dependencies-jar")

使用 插件 DSL

plugins {
  id "nebula.maven-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-dependencies-jar"

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