Search Gradle plugins

com.huanshankeji.compose-html-material-conventions-legacy

This plugin adds the needed Maven dependencies and npm devDependencies (mainly for Webpack) for a Compose HTML project with Material components.

https://github.com/huanshankeji/compose-html-material

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

Version 0.3.0 (latest)

Created 09 May 2024.

This plugin adds the needed Maven dependencies and npm devDependencies (mainly for Webpack) for a Compose HTML project with Material components.

Using the plugins DSL:

plugins {
  id("com.huanshankeji.compose-html-material-conventions-legacy") version "0.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.huanshankeji:compose-html-material-gradle-plugins-legacy:0.3.0")
  }
}

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

Using the plugins DSL:

plugins {
  id "com.huanshankeji.compose-html-material-conventions-legacy" version "0.3.0"
}

Using legacy plugin application:

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

apply plugin: "com.huanshankeji.compose-html-material-conventions-legacy"

Learn how to apply plugins to subprojects