Search Gradle plugins

Version 2.3.0 (latest)

Created 26 June 2023.

A plugin that helps you build the Kotlin Multiplatform Project and Deploy the output efficiently

Using the plugins DSL:

plugins {
  id("io.github.kevinnzou.kmmdeploy") version "2.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.kevinnzou:kmmdeploy:2.3.0")
  }
}

apply(plugin = "io.github.kevinnzou.kmmdeploy")

Using the plugins DSL:

plugins {
  id "io.github.kevinnzou.kmmdeploy" version "2.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.kevinnzou:kmmdeploy:2.3.0"
  }
}

apply plugin: "io.github.kevinnzou.kmmdeploy"

Learn how to apply plugins to subprojects