Owner:
D Akehurst
Kotlin compiler plugin to support net.akehurst.kotlinx reflection on multi-platform
Version 2.2.21 (latest)
Created 18 June 2026.
Kotlin compiler plugin to support net.akehurst.kotlinx reflection on multi-platform
Add this plugin to your build using the plugins DSL:
plugins {
id("net.akehurst.kotlinx.kotlinx-reflect-gradle-plugin") version "2.2.21"
}
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("net.akehurst.kotlinx.kotlinx-reflect-gradle-plugin:net.akehurst.kotlinx.kotlinx-reflect-gradle-plugin.gradle.plugin:2.2.21") }It can then be applied in the precompiled script plugin:plugins { id("net.akehurst.kotlinx.kotlinx-reflect-gradle-plugin") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("net.akehurst.kotlinx.kotlinx-reflect-gradle-plugin:net.akehurst.kotlinx.kotlinx-reflect-gradle-plugin.gradle.plugin:2.2.21") } } apply(plugin = "net.akehurst.kotlinx.kotlinx-reflect-gradle-plugin") - Applying plugins to all subprojects .