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