io.github.edmondantes.simple.kmm.gradle.plugin
所有者: ILIA LOGINOV
为Simple Kotlin Project配置Kotlin多平台项目的Gradle插件
https://github.com/Simple-Kotlin-Project/simple-kmm-gradle-plugin
来源: https://github.com/Simple-Kotlin-Project/simple-kmm-gradle-plugin
使用plugins DSL
plugins {
id("io.github.edmondantes.simple.kmm.gradle.plugin") version "0.7.0"
}
使用旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.edmondantes:simple-kotlin-multiplatform-gradle-plugin:0.7.0")
}
}
apply(plugin = "io.github.edmondantes.simple.kmm.gradle.plugin")
使用plugins DSL
plugins {
id "io.github.edmondantes.simple.kmm.gradle.plugin" version "0.7.0"
}
使用旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.edmondantes:simple-kotlin-multiplatform-gradle-plugin:0.7.0"
}
}
apply plugin: "io.github.edmondantes.simple.kmm.gradle.plugin"