io.github.kevinnzou.kmmdeploy
Owner: Kevin Zou
A plugin that helps you build the Kotlin Multiplatform Project and Deploy the output efficiently
https://github.com/KevinnZou/KMMDeployPlugin
Sources: https://github.com/KevinnZou/KMMDeployPlugin.git
Version 2.3.0 (latest)
2.3.0
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"