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