cloud.wondrify.asset-pipeline
Owner:
David Estes
JVM Asset Pipeline Gradle Adapter.
Sources: https://github.com/wondrify/asset-pipeline/
Version 5.0.19 (latest)
Created 24 September 2025.
JVM Asset Pipeline Gradle Adapter.
Add this plugin to your build using the plugins DSL:
plugins {
id("cloud.wondrify.asset-pipeline") version "5.0.19"
}
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("cloud.wondrify.asset-pipeline:cloud.wondrify.asset-pipeline.gradle.plugin:5.0.19") }
It can then be applied in the precompiled script plugin:plugins { id("cloud.wondrify.asset-pipeline") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("cloud.wondrify.asset-pipeline:cloud.wondrify.asset-pipeline.gradle.plugin:5.0.19") } } apply(plugin = "cloud.wondrify.asset-pipeline")
- Applying plugins to all subprojects .