io.github.kevinnzou.kmmdeploy
所有者: 邹凯文
帮助您构建 Kotlin 多平台项目并高效地部署输出的插件
https://github.com/KevinnZou/KMMDeployPlugin
来源: https://github.com/KevinnZou/KMMDeployPlugin.git
使用plugins DSL
plugins {
id("io.github.kevinnzou.kmmdeploy") version "2.3.0"
}
使用历史插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.kevinnzou:kmmdeploy:2.3.0")
}
}
apply(plugin = "io.github.kevinnzou.kmmdeploy")
使用plugins DSL
plugins {
id "io.github.kevinnzou.kmmdeploy" version "2.3.0"
}
使用历史插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.kevinnzou:kmmdeploy:2.3.0"
}
}
apply plugin: "io.github.kevinnzou.kmmdeploy"