Search Gradle plugins

name.remal.packed-dependencies

Plugin that provides configuration with dependencies that will be copied as archives.

https://remal.gitlab.io/gradle-plugins/

Sources: https://gitlab.com/remal/gradle-plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("name.remal.packed-dependencies") version "1.0.113"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("name.remal:gradle-plugins:1.0.113")
      }
    }
    
    apply(plugin = "name.remal.packed-dependencies")
  • Applying plugins to all subprojects .