tech.mappie.plugin
Owner:
Stefan Koppier
Kotlin compiler plugin for generating object mappers
Sources: https://github.com/Mr-Mappie/mappie.git
Version 2.2.21-1.6.1 (latest)
Created 24 October 2025.
Kotlin compiler plugin for generating object mappers
Add this plugin to your build using the plugins DSL:
plugins {
id("tech.mappie.plugin") version "2.2.21-1.6.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("tech.mappie.plugin:tech.mappie.plugin.gradle.plugin:2.2.21-1.6.1") }It can then be applied in the precompiled script plugin:plugins { id("tech.mappie.plugin") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("tech.mappie.plugin:tech.mappie.plugin.gradle.plugin:2.2.21-1.6.1") } } apply(plugin = "tech.mappie.plugin") - Applying plugins to all subprojects .