搜索Gradle插件

nebula.ivy-dependencies

所有者: Nebula 插件

如果是war项目,添加component.war,否则添加component.java,然后添加依赖项

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

源代码: https://github.com/nebula-plugins/nebula-publishing-plugin.git

版本 4.3.2(最新版)

4.3.2

创建日期:2015年11月3日。

由于JCenter成为永久重定向到Maven Central,因此此插件版本将不再解析,因为它只能从JCenter找到依赖项。有关详细信息,请参阅以下博客文章:https://blog.gradle.org.cn/portal-jcenter-impact 添加war项目中的component.war,否则添加component.java,然后添加依赖项

使用 插件 DSL

plugins {
  id("nebula.ivy-dependencies") version "4.3.2"
}

使用 旧版插件应用

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

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

使用 插件 DSL

plugins {
  id "nebula.ivy-dependencies" version "4.3.2"
}

使用 旧版插件应用

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

apply plugin: "nebula.ivy-dependencies"

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