搜索Gradle插件

版本 1.3.1(最新版本)

1.3.1

创建于 2022年8月3日。

在Java项目中构建和打包前端

使用 插件DSL

plugins {
  id("io.github.hlangjian.webapp") version "1.3.1"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.hlangjian:gradle-webapp-plugin:1.3.1")
  }
}

apply(plugin = "io.github.hlangjian.webapp")

使用 插件DSL

plugins {
  id "io.github.hlangjian.webapp" version "1.3.1"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.hlangjian:gradle-webapp-plugin:1.3.1"
  }
}

apply plugin: "io.github.hlangjian.webapp"

学习如何将插件应用于子项目