org.mockito.release-workflow
Owner: Szczepan Faber
Release tools and Gradle plugins that automate Mockito continuous delivery.
Sources: https://github.com/mockito/mockito-release-tools
Version 0.6.0 (latest)
0.6.0
Created 12 April 2017.
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
Release tools and Gradle plugins that automate Mockito continuous delivery.
Using the plugins DSL:
plugins {
id("org.mockito.release-workflow") version "0.6.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.mockito:mockito-release-tools:0.6.0")
}
}
apply(plugin = "org.mockito.release-workflow")
Using the plugins DSL:
plugins {
id "org.mockito.release-workflow" version "0.6.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.mockito:mockito-release-tools:0.6.0"
}
}
apply plugin: "org.mockito.release-workflow"