搜索Gradle插件

版本 3.0.2 (最新版)

3.0.2

创建于2020年8月31日。

插件已弃用,必须用插件 'org.siouan.frontend-jdk8' 或插件 'org.siouan.frontend-jdk11' 替换。

使用插件DSL

plugins {
  id("org.siouan.frontend") version "3.0.2"
}

使用旧的插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("org.siouan:frontend-gradle-plugin-jdk8:3.0.2")
  }
}

apply(plugin = "org.siouan.frontend")

使用插件DSL

plugins {
  id "org.siouan.frontend" version "3.0.2"
}

使用旧的插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "org.siouan:frontend-gradle-plugin-jdk8:3.0.2"
  }
}

apply plugin: "org.siouan.frontend"

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