Owner:
Pedro Bachiega Neto
An easy way to mock your API calls using ktorfit and KSP
Version 0.0.1-alpha05
Created 04 December 2025.
An easy way to mock your API calls using ktorfit and KSP
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.pedro-bachiega.mock-engine-compiler") version "0.0.1-alpha05"
}
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("io.github.pedro-bachiega.mock-engine-compiler:io.github.pedro-bachiega.mock-engine-compiler.gradle.plugin:0.0.1-alpha05") }It can then be applied in the precompiled script plugin:plugins { id("io.github.pedro-bachiega.mock-engine-compiler") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.pedro-bachiega.mock-engine-compiler:io.github.pedro-bachiega.mock-engine-compiler.gradle.plugin:0.0.1-alpha05") } } apply(plugin = "io.github.pedro-bachiega.mock-engine-compiler") - Applying plugins to all subprojects .