搜索 Gradle 插件

版本 2.1.0(最新版本)

2.1.0

创建于 2021 年 4 月 15 日。

Webpieces HTML 模板编译器

使用 插件 DSL

plugins {
  id("org.webpieces.htmlcompiler") version "2.1.0"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("org.webpieces:gradle-plugin-htmlcompiler:2.1.0")
  }
}

apply(plugin = "org.webpieces.htmlcompiler")

使用 插件 DSL

plugins {
  id "org.webpieces.htmlcompiler" version "2.1.0"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "org.webpieces:gradle-plugin-htmlcompiler:2.1.0"
  }
}

apply plugin: "org.webpieces.htmlcompiler"

了解如何将插件应用于子项目