com.huanshankeji.compose-web-material-conventions
Owner:
Shreck Ye
This plugin adds the needed Maven dependencies and npm devDependencies (mainly for Webpack) for a Compose for Web project with Material components.
https://github.com/huanshankeji/compose-web-material
Version 0.2.1 (latest)
Created 10 March 2023.
This plugin adds the needed Maven dependencies and npm devDependencies (mainly for Webpack) for a Compose for Web project with Material components.
Using the plugins DSL:
plugins {
id("com.huanshankeji.compose-web-material-conventions") version "0.2.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.huanshankeji:compose-web-material-gradle-plugins:0.2.1")
}
}
apply(plugin = "com.huanshankeji.compose-web-material-conventions")
Using the plugins DSL:
plugins {
id "com.huanshankeji.compose-web-material-conventions" version "0.2.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.huanshankeji:compose-web-material-gradle-plugins:0.2.1"
}
}
apply plugin: "com.huanshankeji.compose-web-material-conventions"