Owner:
Shiva Thapa
Extracts, visualizes, and enforces architectural rules in Kotlin Multiplatform and Android projects. Interactive HTML graph. Architecture rule DSL. CI-ready.
Version 0.0.1-alpha02
Created 16 March 2026.
Extracts, visualizes, and enforces architectural rules in Kotlin Multiplatform and Android projects. Interactive HTML graph. Architecture rule DSL. CI-ready.
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.shivathapaa.aalekh") version "0.0.1-alpha02"
}
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.shivathapaa.aalekh:io.github.shivathapaa.aalekh.gradle.plugin:0.0.1-alpha02") }It can then be applied in the precompiled script plugin:plugins { id("io.github.shivathapaa.aalekh") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.shivathapaa.aalekh:io.github.shivathapaa.aalekh.gradle.plugin:0.0.1-alpha02") } } apply(plugin = "io.github.shivathapaa.aalekh") - Applying plugins to all subprojects .