Search Gradle plugins

Version 2.0.0

Created 16 April 2020.

Build Node.js, NPM, Yarn applications with Gradle.

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.siouan.frontend") version "2.0.0"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("org.siouan.frontend:org.siouan.frontend.gradle.plugin:2.0.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("org.siouan.frontend")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.siouan.frontend:org.siouan.frontend.gradle.plugin:2.0.0")
      }
    }
    
    apply(plugin = "org.siouan.frontend")
  • Applying plugins to all subprojects .