Search Gradle plugins

Version 5.0.12 (latest)

Created 05 July 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.12"
}

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.12")
    }
    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.12")
      }
    }
    
    apply(plugin = "cloud.wondrify.asset-pipeline")
  • Applying plugins to all subprojects .