Search Gradle plugins

org.mockito.release-notes

Release tools and Gradle plugins that automate Mockito continuous delivery.

http://mockito.org/

Sources: https://github.com/mockito/mockito-release-tools

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.mockito.release-notes") version "0.8.32"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.org.mockito:mockito-release-tools:0.8.32")
      }
    }
    
    apply(plugin = "org.mockito.release-notes")
  • Applying plugins to all subprojects .