Search Gradle plugins

org.shipkit.test-downstream

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

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.shipkit.test-downstream") version "2.2.1"
}

See also:

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