io.arrow-kt.optics
Owner:
47 Degrees
Arrow Optics for Kotlin (Multiplatform)
Sources: https://github.com/arrow-kt/arrow
Version 2.2.0-beta.11 (latest)
Created 29 October 2025.
Arrow Optics for Kotlin (Multiplatform)
Add this plugin to your build using the plugins DSL:
plugins {
id("io.arrow-kt.optics") version "2.2.0-beta.11"
}
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.arrow-kt.optics:io.arrow-kt.optics.gradle.plugin:2.2.0-beta.11") }It can then be applied in the precompiled script plugin:plugins { id("io.arrow-kt.optics") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.arrow-kt.optics:io.arrow-kt.optics.gradle.plugin:2.2.0-beta.11") } } apply(plugin = "io.arrow-kt.optics") - Applying plugins to all subprojects .