io.github.terrakok.kmp-hierarchy
Owner: Konstantin Tskhovrebov
Simple gradle plugin for printing KMP source sets hierarchy.
https://github.com/terrakok/kmp-hierarchy
Sources: https://github.com/terrakok/kmp-hierarchy
Version 1.1 (latest)
Created 12 April 2024.
Simple gradle plugin for printing KMP source sets hierarchy.
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.terrakok.kmp-hierarchy") version "1.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("io.github.terrakok.kmp-hierarchy:io.github.terrakok.kmp-hierarchy.gradle.plugin:1.1") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.terrakok.kmp-hierarchy") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.terrakok.kmp-hierarchy:io.github.terrakok.kmp-hierarchy.gradle.plugin:1.1") } } apply(plugin = "io.github.terrakok.kmp-hierarchy")
- Applying plugins to all subprojects .