Search Gradle plugins

org.siouan.frontend-jdk17

Owner: v1nc3n4

Build Javascript applications with Node, NPM, PNPM, Yarn: distribution management and package manager activation (Corepack), built-in tasks, additional task types.

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

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

Version 10.0.0 (latest)

10.0.0

Created 29 November 2024.

Build Javascript applications with Node, NPM, PNPM, Yarn: distribution management and package manager activation (Corepack), built-in tasks, additional task types.

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.siouan.frontend-jdk17") version "10.0.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.siouan:frontend-jdk17:10.0.0")
      }
    }
    
    apply(plugin = "org.siouan.frontend-jdk17")
  • Applying plugins to all subprojects .