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