Search Gradle plugins

com.huanshankeji.compose-web-material-conventions

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

Sources: https://github.com/huanshankeji/compose-web-material.git

Version 0.2.2 (latest)

Created 16 March 2024.

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.2"
}

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.2")
  }
}

apply(plugin = "com.huanshankeji.compose-web-material-conventions")

Using the plugins DSL:

plugins {
  id "com.huanshankeji.compose-web-material-conventions" version "0.2.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.huanshankeji:compose-web-material-gradle-plugins:0.2.2"
  }
}

apply plugin: "com.huanshankeji.compose-web-material-conventions"

Learn how to apply plugins to subprojects