Search Gradle plugins

org.shipkit.init

Shipkit - toolkit for shipping it. Enables continuous delivery with automated version bumps, release notes and many more.

http://shipkit.org/

Sources: https://github.com/mockito/shipkit

Version 2.3.5 (latest)

2.3.5

Created 03 October 2020.

This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact Shipkit - toolkit for shipping it. Enables continuous delivery with automated version bumps, release notes and many more.

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.shipkit.init") version "2.3.5"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.shipkit:shipkit:2.3.5")
      }
    }
    
    apply(plugin = "org.shipkit.init")
  • Applying plugins to all subprojects .