Owner:
Anthony Restaino
A Kotlin compiler plugin that generates fake implementations of interfaces used for verifying interactions in tests
Version 3.0.1 (latest)
Created 05 January 2026.
A Kotlin compiler plugin that generates fake implementations of interfaces used for verifying interactions in tests
Add this plugin to your build using the plugins DSL:
plugins {
id("com.anthonycr.plugins.mockingbird") version "3.0.1"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts):dependencies { implementation("com.anthonycr.plugins.mockingbird:com.anthonycr.plugins.mockingbird.gradle.plugin:3.0.1") }It can then be applied in the precompiled script plugin:plugins { id("com.anthonycr.plugins.mockingbird") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.anthonycr.plugins.mockingbird:com.anthonycr.plugins.mockingbird.gradle.plugin:3.0.1") } } apply(plugin = "com.anthonycr.plugins.mockingbird") - Applying plugins to all subprojects .