Search Gradle plugins

Version 0.6

0.6

Created 13 April 2023.

Copy all the dependency jars of a project into a destination directory

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.shiftleft.gather-dependencies") version "0.6"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.shiftleft:gather-dependencies:0.6")
      }
    }
    
    apply(plugin = "io.shiftleft.gather-dependencies")
  • Applying plugins to all subprojects .