org.shipkit.android-publish
Owner: Szczepan Faber
Shipkit - toolkit for shipping it. Enables continuous delivery with automated version bumps, release notes and many more.
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.
Using the plugins DSL:
plugins {
id("org.shipkit.android-publish") version "2.3.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.shipkit:shipkit:2.3.5")
}
}
apply(plugin = "org.shipkit.android-publish")
Using the plugins DSL:
plugins {
id "org.shipkit.android-publish" version "2.3.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.shipkit:shipkit:2.3.5"
}
}
apply plugin: "org.shipkit.android-publish"