com.huanshankeji.kotlin-multiplatform-jvm-and-js-browser-conventions
Owner: Shreck Ye
Kotlin Multiplatform conventions with the JVM target and 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 conventions with the JVM target and the JS browser target
Using the plugins DSL:
plugins {
id("com.huanshankeji.kotlin-multiplatform-jvm-and-js-browser-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:kotlin-common-gradle-plugins:0.3.0-SNAPSHOT-test")
}
}
apply(plugin = "com.huanshankeji.kotlin-multiplatform-jvm-and-js-browser-conventions")
Using the plugins DSL:
plugins {
id "com.huanshankeji.kotlin-multiplatform-jvm-and-js-browser-conventions" version "0.3.0-SNAPSHOT-test"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.huanshankeji:kotlin-common-gradle-plugins:0.3.0-SNAPSHOT-test"
}
}
apply plugin: "com.huanshankeji.kotlin-multiplatform-jvm-and-js-browser-conventions"