搜索Gradle插件

com.huanshankeji.default-web-frontend-conventions

所有者: Shreck Ye

为我们的项目提供默认Web前端约定,使用Compose for Web和kotlinx.html HTML生成

https://github.com/huanshankeji/gradle-common

源: https://github.com/huanshankeji/gradle-common.git

版本 0.5.1(最新版本)

0.5.1

创建时间:2024年3月15日。

为我们的项目提供默认Web前端约定,使用Compose for Web和kotlinx.html HTML生成

使用插件DSL

plugins {
  id("com.huanshankeji.default-web-frontend-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.default-web-frontend-conventions")

使用插件DSL

plugins {
  id "com.huanshankeji.default-web-frontend-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.default-web-frontend-conventions"

学习如何应用到子项目中