搜索Gradle插件

org.shipkit.github-pom-contributors

所有者: Szczepan Faber

Shipkit - 打包工具。实现与自动化版本提升、发布说明等功能相结合的持续交付。

http://shipkit.org/

资源:https://github.com/mockito/shipkit

版本 2.3.5(最新版本)

2.3.5

创建于2020年10月3日。

由于它只使用在JCenter中可找到的依赖项,因此此插件版本将在JCenter永久重定向到Maven Central之后不再解析。有关详细信息,请参阅以下博客文章:https://blog.gradle.org.cn/portal-jcenter-impact Shipkit - 打包工具。实现与自动化版本提升、发布说明等功能相结合的持续交付。

使用 插件 DSL

plugins {
  id("org.shipkit.github-pom-contributors") version "2.3.5"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("org.shipkit:shipkit:2.3.5")
  }
}

apply(plugin = "org.shipkit.github-pom-contributors")

使用 插件 DSL

plugins {
  id "org.shipkit.github-pom-contributors" version "2.3.5"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "org.shipkit:shipkit:2.3.5"
  }
}

apply plugin: "org.shipkit.github-pom-contributors"

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