org.kodein.mock.mockmp
Owner:
Kodein Koders
Applies the MocKMP symbol processor to a Kotlin/Multiplatform project
Version 1.8.0 (latest)
Created 21 June 2022.
Applies the MocKMP symbol processor to a Kotlin/Multiplatform project
Using the plugins DSL:
plugins {
id "org.kodein.mock.mockmp" version "1.8.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.kodein.mock:mockmp-gradle-plugin:1.8.0"
}
}
apply plugin: "org.kodein.mock.mockmp"
Using the plugins DSL:
plugins {
id("org.kodein.mock.mockmp") version "1.8.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.kodein.mock:mockmp-gradle-plugin:1.8.0")
}
}
apply(plugin = "org.kodein.mock.mockmp")