Search Gradle plugins

Version 0.3.1-test-2

Created 23 September 2022.

Kotlin Multiplatform conventions with the JS browser target

Using the plugins DSL:

plugins {
  id("com.huanshankeji.kotlin-multiplatform-js-browser-conventions") version "0.3.1-test-2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.huanshankeji:kotlin-common-gradle-plugins:0.3.1-test-2")
  }
}

apply(plugin = "com.huanshankeji.kotlin-multiplatform-js-browser-conventions")

Using the plugins DSL:

plugins {
  id "com.huanshankeji.kotlin-multiplatform-js-browser-conventions" version "0.3.1-test-2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.huanshankeji:kotlin-common-gradle-plugins:0.3.1-test-2"
  }
}

apply plugin: "com.huanshankeji.kotlin-multiplatform-js-browser-conventions"

Learn how to apply plugins to subprojects