Search Gradle plugins

org.siouan.frontend-jdk11

Owner: v1nc3n4

Build frontend applications with Node, NPM, Yarn: distribution management, configurable tasks (build, test, publish), additional types, support of NPX.

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

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

Version 6.0.0

Created 07 November 2021.

Build Javascript applications with Node, NPM, Yarn 1 (Classic), Yarn 2+ (Berry): distribution management, configurable tasks (build, test, publish), additional types, NPX support.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects