搜索 Gradle 插件

org.siouan.frontend-jdk17

拥有者: v1nc3n4

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

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-jdk17") version "8.1.0"
}

使用 旧插件应用

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

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

使用 插件 DSL

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

使用 旧插件应用

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

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

了解如何向子项目应用插件