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 8.0.0 (latest)

Created 24 August 2023.

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects