Search Gradle plugins

org.shipkit.ci-release

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 0.9.122

Created 28 October 2017.

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

Using the plugins DSL:

plugins {
  id("org.shipkit.ci-release") version "0.9.122"
}

Using legacy plugin application:

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

apply(plugin = "org.shipkit.ci-release")

Using the plugins DSL:

plugins {
  id "org.shipkit.ci-release" version "0.9.122"
}

Using legacy plugin application:

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

apply plugin: "org.shipkit.ci-release"

Learn how to apply plugins to subprojects