fun.adaptive
Owner:
Tóth István Zoltán
Kotlin Multiplatform compiler plugin for the Adaptive library.
https://github.com/spxbhuhb/adaptive
Sources: https://github.com/spxbhuhb/adaptive.git
Version 0.25.515-RC1 (latest)
Created 15 May 2025.
Kotlin Multiplatform Gradle plugin for the Adaptive library.
Add this plugin to your build using the plugins DSL:
plugins {
id("fun.adaptive") version "0.25.515-RC1"
}
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("fun.adaptive:fun.adaptive.gradle.plugin:0.25.515-RC1") }
It can then be applied in the precompiled script plugin:plugins { id("fun.adaptive") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("fun.adaptive:fun.adaptive.gradle.plugin:0.25.515-RC1") } } apply(plugin = "fun.adaptive")
- Applying plugins to all subprojects .