Search Gradle plugins

dev.mokkery

Gradle plugin for Mokkery - mocking library for Kotlin Multiplatform, easy to use, boilerplate-free and compiler plugin driven.

https://mokkery.dev

Sources: https://github.com/lupuuss/Mokkery.git

Add this plugin to your build using the plugins DSL:

plugins {
  id("dev.mokkery") version "2.6.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("dev.mokkery:mokkery-gradle:2.6.0")
      }
    }
    
    apply(plugin = "dev.mokkery")
  • Applying plugins to all subprojects .