搜索 Gradle 插件

版本 0.5.1 (最新版本)

0.5.1

创建于 2024年3月15日。

具有 JVM 目标和 JS 浏览器目标的 Kotlin 多平台应用程序约定

使用 插件 DSL

plugins {
  id("com.huanshankeji.kotlin-multiplatform-jvm-and-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-jvm-and-js-browser-app-conventions")

使用 插件 DSL

plugins {
  id "com.huanshankeji.kotlin-multiplatform-jvm-and-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-jvm-and-js-browser-app-conventions"

了解如何将插件应用于子项目