Search Gradle plugins

Version 0.1.23

0.1.23

Created 31 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.23"
}

See also:

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