com.huanshankeji.compose-web-material-conventions
所有者: Shreck Ye
此插件为带有 Material 组件的 Compose for Web 项目添加所需的 Maven 依赖项和 npm devDependencies(主要为 Webpack)。
https://github.com/huanshankeji/compose-web-material
来源: https://github.com/huanshankeji/compose-web-material.git
版本 0.2.2(最新版)
0.2.2
创建于 2024 年 3 月 16 日。
此插件为带有 Material 组件的 Compose for Web 项目添加所需的 Maven 依赖项和 npm devDependencies(主要为 Webpack)。
使用 plugins DSL
plugins {
id("com.huanshankeji.compose-web-material-conventions") version "0.2.2"
}
使用 旧的插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.huanshankeji:compose-web-material-gradle-plugins:0.2.2")
}
}
apply(plugin = "com.huanshankeji.compose-web-material-conventions")
使用 plugins DSL
plugins {
id "com.huanshankeji.compose-web-material-conventions" version "0.2.2"
}
使用 旧的插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.huanshankeji:compose-web-material-gradle-plugins:0.2.2"
}
}
apply plugin: "com.huanshankeji.compose-web-material-conventions"