搜索 Gradle 插件

org.siouan.frontend-jdk11

所有者: v1nc3n4

使用 Node, NPM, Yarn 构建前端应用程序:发行管理、可配置任务(构建、测试、发布)、额外类型、支持 NPX。

https://siouan.github.io/frontend-gradle-plugin/

资源: https://github.com/siouan/frontend-gradle-plugin.git

版本 8.1.0(最新版)

8.1.0

创建于 2024年6月14日。

使用 Node, NPM, PNPM, Yarn 构建 JavaScript 应用程序:发行管理和包管理激活(Corepack)、内置任务、额外任务类型。

使用 插件 DSL

plugins {
  id("org.siouan.frontend-jdk11") version "8.1.0"
}

使用 旧插件应用

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

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

使用 插件 DSL

plugins {
  id "org.siouan.frontend-jdk11" version "8.1.0"
}

使用 旧插件应用

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

apply plugin: "org.siouan.frontend-jdk11"

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