Search Gradle plugins

dev.mokkery

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

https://github.com/lupuuss/Mokkery

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

Using the plugins DSL:

plugins {
  id("dev.mokkery") version "1.9.0-1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("dev.mokkery:mokkery-gradle:1.9.0-1.0.1")
  }
}

apply(plugin = "dev.mokkery")

Using the plugins DSL:

plugins {
  id "dev.mokkery" version "1.9.0-1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "dev.mokkery:mokkery-gradle:1.9.0-1.0.1"
  }
}

apply plugin: "dev.mokkery"

Learn how to apply plugins to subprojects