com.huanshankeji.kotlin-multiplatform-js-browser-app-conventions
Owner: Shreck Ye
Kotlin Multiplatform app conventions with the JS browser target
https://github.com/huanshankeji/gradle-common
Sources: https://github.com/huanshankeji/gradle-common.git
Version 0.3.0-SNAPSHOT-test
0.3.0-SNAPSHOT-test
Created 23 September 2022.
Kotlin Multiplatform app conventions with the JS browser target
Using the plugins DSL:
plugins {
id("com.huanshankeji.kotlin-multiplatform-js-browser-app-conventions") version "0.3.0-SNAPSHOT-test"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.huanshankeji:architecture-common-gradle-plugins:0.3.0-SNAPSHOT-test")
}
}
apply(plugin = "com.huanshankeji.kotlin-multiplatform-js-browser-app-conventions")
Using the plugins DSL:
plugins {
id "com.huanshankeji.kotlin-multiplatform-js-browser-app-conventions" version "0.3.0-SNAPSHOT-test"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.huanshankeji:architecture-common-gradle-plugins:0.3.0-SNAPSHOT-test"
}
}
apply plugin: "com.huanshankeji.kotlin-multiplatform-js-browser-app-conventions"