io.github.diskria.lapis
Owner:
diskria
A Kotlin Symbol Processor (KSP) for Sponge Mixins. Built exclusively for Minecraft modding, Lapis focuses on intent-based injections and compile-time safety. It provides a Kotlin-first frontend with a type-safe DSL, leverages a MixinExtras-based backend, and automates the generation of Mixin and AW/AT configurations.
https://github.com/diskria-minecraft-platform/lapis
Sources: https://github.com/diskria-minecraft-platform/lapis.git
Version 0.10.0 (latest)
Created 12 September 2026.
A Kotlin Symbol Processor (KSP) for Sponge Mixins. Built exclusively for Minecraft modding, Lapis focuses on intent-based injections and compile-time safety. It provides a Kotlin-first frontend with a type-safe DSL, leverages a MixinExtras-based backend, and automates the generation of Mixin and AW/AT configurations.
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.diskria.lapis") version "0.10.0"
}
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.diskria.lapis:io.github.diskria.lapis.gradle.plugin:0.10.0") }It can then be applied in the precompiled script plugin:plugins { id("io.github.diskria.lapis") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.diskria.lapis:io.github.diskria.lapis.gradle.plugin:0.10.0") } } apply(plugin = "io.github.diskria.lapis") - Applying plugins to all subprojects .