搜索Gradle插件

org.siouan.frontend-jdk21

所有者: 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-jdk21") version "8.1.0"
}

使用 传统插件应用

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

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

使用插件 DSL

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

使用 传统插件应用

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

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

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