io.github.manriif.komple
Owner:
Maanrifa Bacar Ali
Downloads, verifies, installs and exposes native development tools (compilers, SDKs, CLI utilities) directly from your build, through a composable shell environment and a native (C) project abstraction.
https://github.com/manriif/komple
Sources: https://github.com/manriif/komple
Version 0.0.1 (latest)
Created 15 July 2026.
Downloads, verifies, installs and exposes native development tools (compilers, SDKs, CLI utilities) directly from your build, through a composable shell environment and a native (C) project abstraction.
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.manriif.komple") version "0.0.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.manriif.komple:io.github.manriif.komple.gradle.plugin:0.0.1") }It can then be applied in the precompiled script plugin:plugins { id("io.github.manriif.komple") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.manriif.komple:io.github.manriif.komple.gradle.plugin:0.0.1") } } apply(plugin = "io.github.manriif.komple") - Applying plugins to all subprojects .