搜索Gradle插件

org.shipkit.github-contributors

所有者: 史策潘·法贝

Shipkit - 一个用于交付的套件。通过自动化版本提升、发布说明等功能实现持续交付。

http://shipkit.org/

源代码:https://github.com/mockito/shipkit

版本 2.3.5(最新版)

2.3.5

创建于2020年10月3日。

随着JCenter永久转向Maven Central,此插件版本将不再解析,因为它仅使用JCenter中存在的依赖项。有关详细信息,请参阅以下博客文章:https://blog.gradle.org.cn/portal-jcenter-impact Shipkit - 一个用于交付的套件。通过自动化版本提升、发布说明等功能实现持续交付。

使用插件DSL

plugins {
  id("org.shipkit.github-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-contributors")

使用插件DSL

plugins {
  id "org.shipkit.github-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-contributors"

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