com.huanshankeji.kotlin-multiplatform-jvm-and-js-browser-conventions
所有者: Shreck Ye
Kotlin 多平台约定,具有 JVM 目标和 JS 浏览器目标
https://github.com/huanshankeji/gradle-common
源代码: https://github.com/huanshankeji/gradle-common.git
使用 插件 DSL
plugins {
id("com.huanshankeji.kotlin-multiplatform-jvm-and-js-browser-conventions") version "0.5.1"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.huanshankeji:kotlin-common-gradle-plugins:0.5.1")
}
}
apply(plugin = "com.huanshankeji.kotlin-multiplatform-jvm-and-js-browser-conventions")
使用 插件 DSL
plugins {
id "com.huanshankeji.kotlin-multiplatform-jvm-and-js-browser-conventions" version "0.5.1"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.huanshankeji:kotlin-common-gradle-plugins:0.5.1"
}
}
apply plugin: "com.huanshankeji.kotlin-multiplatform-jvm-and-js-browser-conventions"