tech.mappie.plugin
Owner: Stefan Koppier
Kotlin compiler plugin for generating object mappers
Sources: https://github.com/Mr-Mappie/mappie.git
Version 0.9.1
Created 16 November 2024.
Kotlin compiler plugin for generating object mappers
Add this plugin to your build using the plugins DSL:
plugins {
id("tech.mappie.plugin") version "0.9.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:0.9.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:0.9.1") } } apply(plugin = "tech.mappie.plugin")
- Applying plugins to all subprojects .