org.siouan.frontend
Owner: v1nc3n4
Integrate your frontend NPM/Yarn build into a Gradle build.
https://siouan.github.io/frontend-gradle-plugin/
Sources: https://github.com/Siouan/frontend-gradle-plugin.git
Version 3.0.2 (latest)
Created 31 August 2020.
The plugin is deprecated, and must be replaced by plugin 'org.siouan.frontend-jdk8' or plugin 'org.siouan.frontend-jdk11'.
Add this plugin to your build using the plugins DSL:
plugins {
id("org.siouan.frontend") version "3.0.2"
}
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:3.0.2") }
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:3.0.2") } } apply(plugin = "org.siouan.frontend")
- Applying plugins to all subprojects .