Search Gradle plugins

Version 0.1.18

0.1.18

Created 28 October 2024.

Experimental declarative plugin for the Kotlin Multiplatform ecosystem

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.gradle.experimental.kmp-ecosystem") version "0.1.18"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.gradle.experimental:plugin-kmp:0.1.18")
      }
    }
    
    apply(plugin = "org.gradle.experimental.kmp-ecosystem")
  • Applying plugins to all subprojects .