org.graceframework.asset-pipeline
Owner:
Grace Framework
Asset-Pipeline is a plugin used for managing and processing static assets in Grace applications primarily via Gradle.
https://github.com/grace-plugins/grace-asset-pipeline
Sources: https://github.com/grace-plugins/grace-asset-pipeline.git
Version 6.3.0-M1 (latest)
Created 19 January 2025.
Asset-Pipeline is a plugin used for managing and processing static assets in Grace applications primarily via Gradle.
Add this plugin to your build using the plugins DSL:
plugins {
id("org.graceframework.asset-pipeline") version "6.3.0-M1"
}
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.graceframework.asset-pipeline:org.graceframework.asset-pipeline.gradle.plugin:6.3.0-M1") }
It can then be applied in the precompiled script plugin:plugins { id("org.graceframework.asset-pipeline") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.graceframework.asset-pipeline:org.graceframework.asset-pipeline.gradle.plugin:6.3.0-M1") } } apply(plugin = "org.graceframework.asset-pipeline")
- Applying plugins to all subprojects .