Search Gradle plugins

Version 0.2.3

0.2.3

Created 03 October 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.2.3"
}

See also:

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