搜索 Gradle 插件

nebula.maven-dependencies

所有者: 天际线插件

如果是一个 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.maven-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.maven-dependencies")

使用 插件 DSL

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

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