Search Gradle plugins

Version 0.5.2-alpha.6 (latest)

0.5.2-alpha.6

Created 05 November 2021.

Basic Gradle config for Kotlin Multiplatform Arrow projects

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.arrow-kt.arrow-gradle-config-multiplatform") version "0.5.2-alpha.6"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.arrow-kt:arrow-gradle-config-multiplatform:0.5.2-alpha.6")
      }
    }
    
    apply(plugin = "io.arrow-kt.arrow-gradle-config-multiplatform")
  • Applying plugins to all subprojects .