at.asitplus.gradle.modulator
Owner:
A-SIT Plus GmbH
KMP compileOnly Dependencies without Dependency Hell
https://github.com/a-sit-plus/modulator
Sources: https://github.com/a-sit-plus/modulator
Version 0.1.0 (latest)
Created 26 August 2025.
KMP compileOnly Dependencies without Dependency Hell
Add this plugin to your build using the plugins DSL:
plugins {
id("at.asitplus.gradle.modulator") version "0.1.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("at.asitplus.gradle.modulator:at.asitplus.gradle.modulator.gradle.plugin:0.1.0") }
It can then be applied in the precompiled script plugin:plugins { id("at.asitplus.gradle.modulator") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("at.asitplus.gradle.modulator:at.asitplus.gradle.modulator.gradle.plugin:0.1.0") } } apply(plugin = "at.asitplus.gradle.modulator")
- Applying plugins to all subprojects .