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